sorry forgot the code!
okay ive tryed what i could but its not coming to me,in my load menu theres 3 options loadmenuselection 1,2,3 i have dec loadmenuselection heres the problem when i first move the selector to go to the next option it doesnt go you have to push it twice?? then it goes??? i tryed not to set the sprite position but then the selector wont show and dec menuselection wont be active until i push joystick fire a()
heres the code!
loadgame:
stretch sprite 2,180,100
play sound 2
wait 1000
sprite 2,90,141,1
show sprite 2
repeat
hide sprite 1
paste image 3,0,0
if loadmenuselection=1 then sprite 2,90,141,1
if loadmenuselection=2 then sprite 2,90,250,1
if loadmenuselection=3 then sprite 2,90,367,1
if joystick up() or upkey()
play sound 1
dec loadmenuSelection
repeat : until joystick up()=0 and upkey()=0
if loadmenuSelection=0 then loadmenuSelection=3
else
if joystick down() or downkey()
play sound 1
inc loadmenuSelection
repeat : until joystick down()=0 and downkey()=0
if loadmenuSelection=4 then loadmenuSelection=1
endIf
endIf
sync
until joystick fire b()=1
wait 500
hide sprite 2
show sprite 1
sync
return
KOOLAID