Flickering text by jack murray23rd Sep 2005 15:06
|
---|
Summary Will make a given piece of text flicker random colours Description Code ` This code was downloaded from The Game Creators ` It is reproduced here with full permission ` http://www.thegamecreators.com do cls RgbForeValue=RGB(rnd(255),rnd(255),rnd(255)) RgbBackColor=RGB(rnd(255),rnd(255),rnd(255)) ink RgbForeValue, RgbBackColor print "hello" loop |