mmlm Posted August 23, 2006 Posted August 23, 2006 If i insert in my script send("{enter} I talk here but I want the typing was more fast that's slow for type {enter}") in all that code if i want they enter letter faster in the type line where i inserte the value ? If i remember 1 is faster then 10 .. what's the .. if I set non what the automatic one is set and how can I do it faster ?
BigDod Posted August 23, 2006 Posted August 23, 2006 Opt("SendKeyDelay", 1) at the top of your script. The help file is your friend. Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
mmlm Posted August 23, 2006 Author Posted August 23, 2006 Opt("SendKeyDelay", 1) at the top of your script.The help file is your friend. thank's that's perfect
Xenobiologist Posted August 23, 2006 Posted August 23, 2006 thank's that's perfect Hi,could also try ClipGet/ClipGet. Should be fast too. So long,Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
BigDod Posted August 23, 2006 Posted August 23, 2006 Hi,could also try ClipGet/ClipGet. Should be fast too. So long,MegaDont you mean ClipPut/ClipGet. Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
Xenobiologist Posted August 23, 2006 Posted August 23, 2006 Dont you mean ClipPut/ClipGet. Didn't think about the order. Nevertheless you are right. So long,Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
herewasplato Posted August 23, 2006 Posted August 23, 2006 (edited) Didn't think about the order...I think that he was talking about the fact that you posted "ClipGet/ClipGet". ...but I do not think that you want ClipGet in the script if it is speed that you are after. Try this code and you will see what I mean:ClipPut("I talk here but I want the typing was more fast that's slow for type.") Run("notepad") WinWait("Untitled - Notepad") WinActivate("Untitled - Notepad") WinWaitActive("Untitled - Notepad") Send("^v") Send("{ENTER}") Send(ClipGet())Edit: Moved the ClipPut line to the top of the code to allow the clipboard operation time to complete - having it just above the Send("^v") line can cause problems on some computers. Edited August 23, 2006 by herewasplato [size="1"][font="Arial"].[u].[/u][/font][/size]
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