on Mar 30th, 2015, 12:08pm, Danny wrote:So, for example if I wanted the word "hello" to gradually appear from a black background in a certain colour. |
|
How about this (MODE 29 is too big to fit on my screen so I used MODE 27):
Code: MODE 27
*font Arial,36
FOR C% = 1 TO 255
COLOUR 7,0,C%,C%
PRINT TAB(2,2) "Hello";
WAIT 1
NEXT
PRINT
Richard.