Just as a standard, to get the Bug codelines standard:<br><br> case <span style="color: rgb(255, 0, 0);">(</span>'*'<span style="color: rgb(255, 0, 0);">)</span>:<br> fn = "digits/star";
<br> break;<br> case <span style="color: rgb(255, 0, 0);">(</span>'#'<span style="color: rgb(255, 0, 0);">)</span>:<br><br>could be<br> case '*':<br> fn = "digits/star";
<br> break;<br> case '#':<br><br>since all the ( ) are useless in the switch statement.<br><br><br>and there's so much:<br>num = num - 60;<br><br>which could be:<br>num -= 60;
<br><br>that one makes code cleaner, specialy when using a lot of<br>num = num % 10; and all math combination.<br><br><br>whatcha think?<br><br><br><br>-- <br>Clod Patry<br>