I need to print text on screen 12, with different background colors. At the moment I use the following method (let's say I need to print something COLOR 7, 2):
------------------
[This message has been edited by Aldo Cavini (edited July 24, 2003).]
- print a full char ( chr$(219) ) with the background color I need (color 2)
- get the character region of the screen to an array
- print the character I need with color foreground xor background (7 xor 2 = 5)
- put the array to the character screen region using option XOR: the foreground changes from 5 to 7, background from 0 to 2.
- repeat all the above for each character (or string...)
------------------
[This message has been edited by Aldo Cavini (edited July 24, 2003).]
Comment