(AGK version: 108.14)
Submitted: 2013-06-24 02:26:48
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)
Login to post an example of your own.