//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)
//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