Unseen Ghost,
I do agree that you should check and update your divers, if needed. The color is fine on my screen and my specs. are significantly lower grade than hyritcher's. I do want to suggest, in curtosy, a better way to write this simple program. Here is a
set display mode 800,600,16
sync on
sync rate 80
do
ink rgb(100,000,100),0
box 0,0,200,599
sync
cls
loop
. 1.)I have turned on syncronization and brought down it's rate of refresh to keep the purple box from appearing to flash. 2.)The
clr has been removed from the start of the code, due to there being no reason to clear the screen when nothing has been drawn onto it. It has been placed after
sync, the screen refresher. This also helps keep the box from appearing to flash on the screen, clearing the screen after it is updated. 3.)I have placed the code to form the box, inside of the
do loop, just before the
sync,
cls, and
loop commands. All of these changes together keep the box and the screen from flashing, making a more sophisticated program. I hope this comes to you useful. Enjoy.
+NanoBrain+