Site Tools


autoit:codes:textinsert

This is an old revision of the document!


Textinsert

This can be used to insert text into fields without copying it to the clipboard. Just click into the textbox/field and hit PageUp/Bild auf. Close the script with End/Ende button.

HotKeySet("{PGUP}", "insert")
Hotkeyset("{END}", "close")
 
Func insert()
Sleep(50)
Send("Hello")
Send("{enter}")
Send("World")
Send("{enter}")
EndFunc
 
Func close ()
	Exit 0
EndFunc
 
Sleep(1)
 
While 1
WEnd



autoit/codes/textinsert.1434376132.txt.gz · Last modified: 2017/03/01 12:50 (external edit)