Setvirtualresolution(640,480)
ResetTimer()
text$="Example Text"
CreateText(1,text$)
SetTextSize(1,25)
SetTextPosition(1,10,100)
Repeat
For c=0 to Len(text$)
For d=0 to 100
newx=c*12+d
newy=d+100
SetTextCharPosition(1,c,newx,newy)
Sync()
Next d
Next c
Until Timer()>20
End
Help make AGK better by submitting an example for this command! (All examples are subject to approval)
Setvirtualresolution(640,480) ResetTimer() text$="Example Text" CreateText(1,text$) SetTextSize(1,25) SetTextPosition(1,10,100) Repeat For c=0 to Len(text$) For d=0 to 100 newx=c*12+d newy=d+100 SetTextCharPosition(1,c,newx,newy) Sync() Next d Next c Until Timer()>20 End