Christopher Blue Posted December 21, 2006 Posted December 21, 2006 I am wondering if autoit tracks registered hotkeys? Basically I want to keep track of the hotkeys I set in my script. If autoit already does that then I will use the built-in functionality. If not then I shall keep track of it myself.
Paulie Posted December 21, 2006 Posted December 21, 2006 I am wondering if autoit tracks registered hotkeys? Basically I want to keep track of the hotkeys I set in my script. If autoit already does that then I will use the built-in functionality. If not then I shall keep track of it myself.I don't understand,Are you looking for @Hotkeypressedwhen placed in a function that was called by a hotkey it returns the hotkey that was pressed.
Christopher Blue Posted December 21, 2006 Author Posted December 21, 2006 (edited) I am looking to see if there is a function that I could call that would return an array of set hotkeys like this: HotKeySet("1", "Function1") ... code ... HotKeySet("2", "Function2") ... code ... HotKeySet("3", "Function3") ... code ... $array[100][2] = GetSetHotKeys() And $array would contain something like: $array[0] = [3, 0] $array[1] = ["1", "Function1"] $array[2] = ["2", "Function2"] $array[3] = ["3", "Function3"] I could set up some functions to keep track of hotkeys but I was wondering if AutoIt already did so. Edited December 21, 2006 by Christopher Blue
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