ok that works thank you... what im doing here if you guys didnt know is im making a Guitar Hero kind of game...
so I think a problem that may come up is notes dont always hit on the second...
could i do the math and figure out the half seconds too..
also my code for this is long and repetitive for this part... Is there a way to shorten this part of code?
one=timer()+ (1 * 1000)
two=timer()+ (2 * 1000)
three=timer()+ (3 * 1000)
sync on
do
cls
if timer()>one
sprite 1,x,y,1
inc x,5
dec y,3
endif
if timer()>two
sprite 3,x,y,3
dec y,3
endif
if timer()>three
sprite 2,x,y,2
inc x,5
dec y,2
endif
sync
loop
see im goin for seconds to I hit the end of a song...
so that will go to like 350 some... 3:50 for this song...
any way to simplify it?
thanx
Dexter