Page 1 of 1
Text colors
Posted: Tue Apr 01, 2008 8:29 am
by johnfin
How can I print different colors of text on the same line. I have tried TAB and ; and I cant get it to work.
2 colors on same line of text
Posted: Tue Apr 01, 2008 9:48 am
by burger2227
You can place a semicolon and a colon between 2 Color Print statements:
Code: Select all
COLOR 10: PRINT "Hello"; : Color 12: PRINT " World"
Or just place a semicolon at the end of the first PRINT statement and put another COLOR PRINT statement on the next code line.
LOCATE could also be used for the first Print statement.
Ted
text color
Posted: Tue Apr 01, 2008 12:17 pm
by johnfin
Thanks, god I am rusty. I write basic programs about once a year.