quote:
Originally posted by stu
foaly, in your code, what does "count=count%9;" that line mean? Never seen that before..
The % operator is the modulo, it gives you the remainder when dividing by the number ie. the remainder when dividing count by 9. Because of the way that the function is coded, you should replace 9 with the number of lyrics you want to be displayed before you want repetition minus one (so if you want 20 lyrics you would do count%19).