//Set screen and Font Color
Setvirtualresolution(640,480)
SetClearColor (100, 220, 200 )
SetPrintColor (0,0,0)
//Initiate Values
integer_start=1000
string_value$="AGK"
//Print example
For i=1 to 500
Print ("")
Printc (integer_start+i)
Printc (":")
Print (string_value$)
Sync()
Next i
Sleep(1000)
End
Help make AGK better by submitting an example for this command! (All examples are subject to approval)
//Set screen and Font Color Setvirtualresolution(640,480) SetClearColor (100, 220, 200 ) SetPrintColor (0,0,0) //Initiate Values integer_start=1000 string_value$="AGK" //Print example For i=1 to 500 Print ("") Printc (integer_start+i) Printc (":") Print (string_value$) Sync() Next i Sleep(1000) End