(AGK version: 108.15)
Submitted: 2013-07-09 16:20:05
Setvirtualresolution(640,480)
ResetTimer()
CreateText(1,"Text One")
CreateText(2,"Text Two")
CreateText(3,"Text Three")
For i=1 to 3
    SetTextSize(i,25)
    SetTextY(i,i*25)
Next i
AddVirtualButton(1,580,420,80)
SetVirtualButtonText(1,"Delete")
Do
    If GetVirtualButtonPressed(1)
        DeleteAllText()
    EndIf
    If Timer()>15 Then Exit
    Sync()
Loop
End
Help make AGK better by submitting an example for this command!
(All examples are subject to approval)
Login to post an example of your own.