qbasicking
Programmer
How do I get an object to scroll onto the screen? Here's the problem. I want a menu to scroll down and take exactly 1/3 of a second. I need to know how many lines to draw in each loop, how? the TIMER function doesn't work, it only goes in increments of .11 sec, I need it more precise, maybe thousandths of a second. here's what i got:
DO
LINE (100,100+A)-(200,100+A),15
T = TIMER
WHILE T+.01 < TIMER:WEND
A = A+1
LOOP UNTIL A = 100
The TIMER has to be more precise
DO
LINE (100,100+A)-(200,100+A),15
T = TIMER
WHILE T+.01 < TIMER:WEND
A = A+1
LOOP UNTIL A = 100
The TIMER has to be more precise