Hey
I've been playing around with inputs, like the code below. I figured that I could save this in a word document and then next time they open the program they wouldn’t have to put in their name because it could be loaded or something?
Name:
set cursor 180,270
INPUT "Please enter your name - ",MyName$
set cursor 180,290
INPUT "Please enter your current location - ",MyLoc$
SYNC
SYNC
`if they dont type anything..go back to the menu
cls
IF MyName$ = ""
set cursor 180,290
PRINT "Please Enter A Name!"
Wait Key
GOTO Name
ENDIF
IF MyLoc$ = ""
set cursor 180,290
PRINT "Please Enter A Location!"
Wait Key
GOTO Name
ENDIF
SLEEP 1000
` say welcome :D and clear the screen
cls
set cursor 240,240
PRINT "Welcome ",MyName$
PRINT "From,",MyLoc$
GOTO Main
SLEEP 1000
And I was just wondering, I couldn’t find any thing on it, weaver it is there or not is a different thing.
and also sorry on the late replies, i think i've still got this anti-new person block. HeHe
Is this a good place to start? David