inloveofrapo Posted June 15, 2008 Posted June 15, 2008 (edited) I know this oneOpt("SendKeyDelay", x)Opt("SendKeyDownDelay", x)But is there any other way ?Cause this one does not type everything down, otherwise its too slow Any other way ? Please! Edited June 15, 2008 by inloveofrapo
cppman Posted June 15, 2008 Posted June 15, 2008 If you don't actually want to simulate the key's being pressed (you are copying to an input field) you can do something like this: Func _FastSend($text) $oldClip = CLipGet() ClipPut($text) Send("{CTRLDOWN}+V{CTRLUP}") ClipPut($oldClip) EndFunc Sleep(2000) _FastSend("This is a test.... hello world!") Miva OS Project
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now