90. Moving text (2) ~~~~~~~~~~~~~~~ Here is another short demonstration of moving text. It uses MID$ in a rather cunning way to achieve the movement very simply. If you omit the CLS from line 10, then you get quite a different effect. The routine repeats until you press any key. 10 MODE2:VDU23,1,0;0;0;0;:COLOUR1:COLOUR131:CLS 20 ME$=STRING$(20," ")+"******* THIS PROGRAM HAS BEEN BROUGHT TO YOU BY COURTESY OF THE WAKEFIELD BBC MICRO USER GROUP *******" 30 REPEATa%=0:REPEATa%=a%+1:PRINTTAB(0,29)MID$(ME$,a%,20): b%=INKEY(15):UNTILa%=LEN(ME$)ORNOTb%:UNTILNOTb% 40 MODE7:END