Hi
Im trying to make a simple menu using drawbox and text.
Unfortunately the text seems to be hidden behind the box.
menugrey=MakeColor(100,00,100)
menudark=MakeColor(100,00,100)
boxwidth=200
boxheight=200
DrawBox(screenX/2-boxwidth/2,screenY/2-boxheight/2,screenX/2+boxwidth/2,screenY/2+boxheight/2,menugrey,menugrey,menugrey,menugrey,1)
Start#=1
CreateText(Start#,"Start")
SetTextSize(1,30)
Exit#=2
CreateText(Exit#,"Exit")
SetTextSize(2,30)
SetTextAlignment( Start#, 1 )
SetTextPosition(Start#,400,270)
SetTextAlignment( Exit#, 1 )
SetTextPosition(Exit#,400,330)
How would you force the text to appear ontop of it?