TurtleProgrammer wrote:I need the program to start from 1 to and go to 1000 (for example), and pick a color from the standard, red, blue, green, yellow, orange, and white.
Which graphics mode? 32bit or 8bit?
-Vince
TurtleProgrammer wrote:I need the program to start from 1 to and go to 1000 (for example), and pick a color from the standard, red, blue, green, yellow, orange, and white.
TurtleProgrammer wrote:What's the easiest way to create a randomly colored pixel from 1 to 1001 for example?
Code: Select all
Dim value as long= &hFFFF0000
dim rev as long = value XOR &hFFFFFFFF
print hex(value,8), hex(rev,8)
sleep