(AGK version: 108.14)
Submitted: 2013-06-30 03:51:47
//Applicable To Touch Screen Devices Only
Setvirtualresolution(640,480)

CreateEditBox(1)
//Setting UseAlternateInput to 0 will mean touch keyboard will obsure the edit box
//Type quit to End
SetEditBoxUseAlternateInput(1,0)
SetEditBoxPosition(1,220,400)
SetEditBoxTextColor(1,0,0,255)
SetEditBoxFocus(1,1)

Repeat
    Print ("Text entered is: "+GetEditBoxText(1))
    Sync()
Until Lower(GetEditBoxText(1))="quit"
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.