thanks everyone. I plugged in all those snippets to my program, and they all got the job done. Thanks for the ideas!!!
For anyone reading this, here is all those spinnets pulled into my program:
Timer Option:
sync on
do
cls
ink rgb(255,255,255),0
center text 320,0,"MENU"
if option = 0 then ink rgb(0,0,255),0 else ink rgb(255,255,255),0
center text 320,30,"New Game"
if option = 1 then ink rgb(0,0,255),0 else ink rgb(255,255,255),0
center text 320,50,"Load Game"
if option = 2 then ink rgb(0,0,255),0 else ink rgb(255,255,255),0
center text 320,70,"Can't think of another typical option"
if option = 3 then ink rgb(0,0,255),0 else ink rgb(255,255,255),0
center text 320,90,"Exit"
if upkey()=1 and option > 0 and timer()-keyPressTimer>200
keyPressTimer=timer()
dec option
endif
if downkey()=1 and option < 3 and timer()-keyPressTimer>200
keyPressTimer=timer()
inc option
endif
sync
loop
"Lock" Variable Option:
sync on
do
cls
ink rgb(255,255,255),0
center text 320,0,"MENU"
if option = 0 then ink rgb(0,0,255),0 else ink rgb(255,255,255),0
center text 320,30,"New Game"
if option = 1 then ink rgb(0,0,255),0 else ink rgb(255,255,255),0
center text 320,50,"Load Game"
if option = 2 then ink rgb(0,0,255),0 else ink rgb(255,255,255),0
center text 320,70,"Can't think of another typical option"
if option = 3 then ink rgb(0,0,255),0 else ink rgb(255,255,255),0
center text 320,90,"Exit"
if upkey()=1 and option > 0 and uplock=0
uplock = 1
dec option
endif
if upkey()=0 then uplock=0
if downkey()=1 and option < 3 and downlock=0
downlock = 1
inc option
endif
if downkey()=0 then downlock=0
sync
loop
All Stop Option:
sync on
do
cls
ink rgb(255,255,255),0
center text 320,0,"MENU"
if option = 0 then ink rgb(0,0,255),0 else ink rgb(255,255,255),0
center text 320,30,"New Game"
if option = 1 then ink rgb(0,0,255),0 else ink rgb(255,255,255),0
center text 320,50,"Load Game"
if option = 2 then ink rgb(0,0,255),0 else ink rgb(255,255,255),0
center text 320,70,"Can't think of another typical option"
if option = 3 then ink rgb(0,0,255),0 else ink rgb(255,255,255),0
center text 320,90,"Exit"
if upkey()=1 and option > 0
dec option
endif
if downkey()=1 and option < 3
inc option
endif
`Wait till no key is being pressed
repeat
until scancode()=0
sync
loop
Have a nice day, God Bless You!