Thanks again. I'm having a problem, and it's no doubt a really easy one, but my mind refuses to catch it. It's writing two totally different sets of text at the same time. I click setup, and it's displaying the setup AND File menus.
here's the snippet...
REM File
if mouseclick()=1 and mousex()>50 and mousex<73 and mousey()>0 and mousey()<15
set cursor 50, 25
print "new world"
set cursor 50, 40
print "open world"
set cursor 50, 55
print "save as bitmap"
endif
REM setup
if mouseclick()=1 and mousex()>150 and mousex<185 and mousey()>0 and mousey()<15
set cursor 150, 25
print "weather options"
set cursor 150, 40
print "time rate"
set cursor 150, 55
print "gravity strength"
set cursor 150, 70
print "miscellaneous"
set cursor 150, 85
print "tech level"
endif
I keep looking over it, and I can't catch where I'm relating the two numbers....