//Set screen and Background Color
Setvirtualresolution(640,480)
SetClearColor (127,127,127 )
//Print example
//Increase the Alpha value with each loop
For i=0 to 255
SetPrintColor(0,0,0,i)
Print ("AGK")
Print ("SetPrintColor Example")
Print ("..with Alpha")
Sync()
Next i
Sleep(2000)
End
Help make AGK better by submitting an example for this command! (All examples are subject to approval)
//Set screen and Background Color Setvirtualresolution(640,480) SetClearColor (127,127,127 ) //Print example //Increase the Alpha value with each loop For i=0 to 255 SetPrintColor(0,0,0,i) Print ("AGK") Print ("SetPrintColor Example") Print ("..with Alpha") Sync() Next i Sleep(2000) End