JMRA Posted April 11, 2006 Posted April 11, 2006 Dear all, This is my first topic and I want to say that I found a very incredible and powerfull tool - AUTOIT, for that I want to congratulate and thank to all contributors. My main question is about using HotKeySet. Running example I am not able to set HotKey using compiled version. I just need to echo <> when I press < but it does nor work. Can you help me ? Thanks
Valuater Posted April 11, 2006 Posted April 11, 2006 if you have a script... show us, maybe we can find the error as to why it wont compile 8)
litlmike Posted April 11, 2006 Posted April 11, 2006 Dear all, This is my first topic and I want to say that I found a very incredible and powerfull tool - AUTOIT, for that I want to congratulate and thank to all contributors. My main question is about using HotKeySet. Running example I am not able to set HotKey using compiled version. I just need to echo <> when I press < but it does nor work. Can you help me ? Thanks My guess, is that you need the script to run in the background at all times? My next guess is you did the mistake I did. So you need this in your script: While 1 Sleep (100) WEnd Here is an example of one of mine. Note the ORDER of the While loop and where HotKeySet is located. HotKeySet("^q", "Activate_ACT") HotKeySet("^w", "Activate_Eudora") ;;;;;;;; Body of program would go here;;;;;;;; While 1 Sleep(100) WEnd ;;;;;;;; ;******************************************************************************** Func Activate_ACT() Opt("WinTitleMatchMode",1) $title = WinGetTitle("") WinWait("ACT!","") If Not WinActive("ACT!","") Then WinActivate("ACT!","") WinWaitActive("ACT!","") Return EndFunc Func Activate_Eudora() Opt("WinTitleMatchMode",1) $title = WinGetTitle("") WinWait("Eudora","") If Not WinActive("Eudora","") Then WinActivate("Eudora","") WinWaitActive("Eudora","") Return EndFunc _ArrayPermute()_ArrayUnique()Excel.au3 UDF
JMRA Posted April 12, 2006 Author Posted April 12, 2006 if you have a script... show us, maybe we can find the error as to why it wont compile8)Here is what I have doneHotKeySet("{<}", "keys")While 1Sleep (100)WEndFunc keys() Send("{<}{>}") EndFuncThank you
Infinitex0 Posted April 12, 2006 Posted April 12, 2006 (edited) Here is what I have done HotKeySet("{<}", "keys") While 1 Sleep (100) WEnd Func keys() Send("{<}{>}") EndFunc Thank you Maybe HotKeySet("{F7}", "keys") While 1 Sleep (100) WEnd Func keys() Send("<>") EndFunc Edited April 12, 2006 by Infinitex0 The below statement is False.The above statement is True.a lesson I learned from Greenmachine; give a man a code and he'll solve one problem. Teach a man to code and he'll solve all his problems.P.S please don't use autoIt as a virus creator/spyware maker(keyLogger especially)Cick this and help me[center]My Scripts:[/center][center]Port Scanner[/center]
greenmachine Posted April 12, 2006 Posted April 12, 2006 Or if you want to keep it as <: HotKeySet("<", "keys") While 1 Sleep (100) WEnd Func keys() HotKeySet ("<") Send("<>") HotKeySet ("<", "keys") EndFunc
Infinitex0 Posted April 12, 2006 Posted April 12, 2006 Why the second HotKeySet? The below statement is False.The above statement is True.a lesson I learned from Greenmachine; give a man a code and he'll solve one problem. Teach a man to code and he'll solve all his problems.P.S please don't use autoIt as a virus creator/spyware maker(keyLogger especially)Cick this and help me[center]My Scripts:[/center][center]Port Scanner[/center]
nfwu Posted April 12, 2006 Posted April 12, 2006 (edited) Step by step (original code): 1. You press "<" 2. It calls function keys() 3. Function keys() presses "<" which calls function keys() again. 4. The newly called Function keys() presses "<" which calls function keys() yet again. And so on... and on... and on.... (infinite recursion) Therefore, you must do as greenmachine did. Use HotKeySet ("<")to disable the hotkey before re-enabling it withHotKeySet ("<", "keys") #) EDIT: Typo(s) Edited April 12, 2006 by nfwu TwitterOut of date stuff:Scripts: Sudoku Solver | Webserver | 3D library (Pure AutoIt) | Wood's GadgetsUDFs: _WoodUniqueID() | _DialogEditIni() | _Console*() | _GetIPConfigData() | _URLEncode/Decode()
Infinitex0 Posted April 12, 2006 Posted April 12, 2006 Oh. The below statement is False.The above statement is True.a lesson I learned from Greenmachine; give a man a code and he'll solve one problem. Teach a man to code and he'll solve all his problems.P.S please don't use autoIt as a virus creator/spyware maker(keyLogger especially)Cick this and help me[center]My Scripts:[/center][center]Port Scanner[/center]
JMRA Posted April 12, 2006 Author Posted April 12, 2006 Thank you to everybody for code you have sent. Problem was with my lack of understanding about sintaxe. I hope to have learned. Best regards, JMRA
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