Setvirtualresolution(640,480)
ResetTimer()
CreateText(1,"Text One")
SetTextVisible(1,0)
CreateText(2,"Text Two")
SetTextVisible(2,1)
CreateText(3,"Text Three")
SetTextVisible(3,0)
Repeat
For check=1 to 3
If GetTextVisible(check)=1
Print (Str(check)+" Visible")
Else
Print (Str(check)+" Not Visible")
EndIf
Next check
Sync()
Until Timer()>12
End
Help make AGK better by submitting an example for this command! (All examples are subject to approval)