12-16-2022, 04:03 PM
I was just wondering if there is way to change the color of a value which is displaying on a screen. For example, something like this
Screen _NewImage(1900, 900, 32)
$Color:32
A$ = "5"
Color White
_PrintString (100, 100), A$
Color Green
_printstring (100,100), color green
So the value 5 is displaying on the screen in white however, later on in the program I want that value to pop out if certain conditions apply. Present coding requires a complete repeat of the value plus the new color but if I just want to change the color only at that same location doesn't appear color only can be changed? or might there be a way???
Screen _NewImage(1900, 900, 32)
$Color:32
A$ = "5"
Color White
_PrintString (100, 100), A$
Color Green
_printstring (100,100), color green
So the value 5 is displaying on the screen in white however, later on in the program I want that value to pop out if certain conditions apply. Present coding requires a complete repeat of the value plus the new color but if I just want to change the color only at that same location doesn't appear color only can be changed? or might there be a way???