Hi,
HH> Can someone show me how to fade this blue screen slowly to black?
HH> Thanks in advance
Off the top of my head, add
RED% = 0
GREEN% = 0
FOR BLUE%= 63 to 0 STEP -1
PALETTE 9, 65536 * BLUE% + 256 * GREEN% + RED%
FOR I% = 1 TO 1000: NEXT ' This is a delay - very simple, but easier
' than playing with the TIMER.
NEXT
(This is in QBASIC, and I might of got RED%, GREEN% and RED% the wrong
way round - the important thing is each byte has a limit of 0-63, which
can be frustrating when you are first start playing with PALETTE
values!)
Bye,
Neil
---