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

//Create a test image
For x=0 to 1024 Step 10
    DrawLine(0,0,x,600,Random(0,255),Random(0,255),Random(0,255))
    Update(0)
    Render()
Next x
GetImage(101,0,100,300,80)

CreateEditBox(1)
SetEditBoxPosition(1,10,100)
//Use test image as background for edit box
SetEditBoxBackgroundImage(1,101)

Repeat
    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.