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