(AGK version: 108.14)
Submitted: 2013-06-29 02:38:11
Setvirtualresolution(640,480)
ResetTimer()

CreateEditBox(1)
SetEditBoxPosition(1,10,100)
CreateEditBox(2)
SetEditBoxPosition(2,10,140)
SetEditBoxVisible(2,0)
CreateEditBox(3)
SetEditBoxPosition(3,10,180)

Repeat
    For check=1 to 3
        If GetEditBoxVisible(check)=1
            Print (Str(check)+" Is Visible")
        Else
            Print (Str(check)+" Is Not Visible")
        EndIf
    Next check
    Sync()
Until Timer()>15
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.