i load up a background image. then text on top.
but how can i make it so the text does not flicker?
hope u can help....
sync on
sync rate 60
do
cls
ink rgb(255,255,255),0
load bitmap "E:\Game\Menu.bmp"
set text size 40
text 350,200,"NEW GAME"
text 350,300,"HIGH SCORES"
text 350,400,"QUIT"
rem NEW GAME
if mousex() > 350 and mousex() < 500 and mousey() > 200 and mousey() < 220 then ink rgb(0,0,100),0 : text 350,200,"NEW GAME"
if mousex() > 350 and mousex() < 500 and mousey() > 200 and mousey() < 220 and mouseclick()=1 then text 100,120,"YOU CLICKED NEW GAME"
rem LOAD
if mousex() > 350 and mousex() < 500 and mousey() > 300 and mousey() < 320 then ink rgb(0,0,100),0 : text 350,300,"HIGH SCORES"
if mousex() > 350 and mousex() < 500 and mousey() > 300 and mousey() < 320 and mouseclick()=1 then text 100,120,"YOU CLICKED HIGHSCORES"
rem QUIT
if mousex() > 350 and mousex() < 500 and mousey() > 400 and mousey() < 420 then ink rgb(0,0,100),0 : text 350,400,"QUIT"
if mousex() > 350 and mousex() < 500 and mousey() > 400 and mousey() < 420 and mouseclick()=1 then end
sync
loop