you can do just the same like this.
sync on
sync rate 0
back=rgb(128,128,0)
border=rgb(70,104,32)
white=rgb(255,255,255)
ink border,0
set text font "ariel"
set text size 60
center text 320,20,"Title Screen"
selected=1
set text size 20
ink border,0
do
ink border,0
line 10,10,628,10
line 10,11,628,11
line 10,12,628,12
line 628,10,628,469
line 10,10,10,469
line 10,469,628,469
line 10,468,628,468
line 10,467,628,467
if selected=1 then ink white,0 else ink border,0
center text 320,175,"Start new gaMe"
if selected=2 then ink white,0 else ink border,0
center text 320,225,"Load gaMe"
if selected=3 then ink white,0 else ink border,0
center text 320,275,"Options"
If selected=4 then ink white,0 else ink border,0
center text 320,325,"Exit"
if downkey()=1 and hold=0 then inc selected,1 : hold=1
if upkey()=1 and hold=0 then dec selected,1 : hold=1
if selected>4 then selected=1
if selected<1 then selected=4
if upkey()=0 and downkey()=0 then hold=0
if returnkey()=1
if selected=4
play sound 2
end
endif
endif
sync
loop
this is it without the action linked with the options.
Our aim is to keep the loo's clean, your aim can help.