font and text commands

Blitz3D Forums/Blitz3D Beginners Area/font and text commands

seferey(Posted 2006) [#1]
Isn't there a font or text command that changes the color of the text


WendellM(Posted 2006) [#2]
Yes, there is a command: Color.
Graphics 640,480

Color 255,0,0
Text 10,10, "Red"

Color 0,0,255
Text 10,30, "Blue"

Flip
WaitKey



seferey(Posted 2006) [#3]
Thanks :)