06-09-2022, 01:50 AM
(06-07-2022, 08:04 PM)Kernelpanic Wrote: Hello, is there a way to set the distance from the edge for the whole program with "Locate"?
So far I've only found the way, see screenshot. Pretty laborious. Thanks!
Is this what you re looking for?
Code: (Select All)
PRINT "horse"
PRINT "cow"
PRINT "mule"
PRINT "pig"
PRINT "Why bring Steve's farm into this?"
PRINT: PRINT: PRINT
' Now do it again but so it indents 5 spaces...
printx "horse"
printx "cow"
printx "mule"
printx "pig"
printx "Why bring Steve's farm into this?"
SUB printx (x$)
LOCATE , 5
PRINT x$
END SUB
Pete