Moosey Posted August 19, 2011 Posted August 19, 2011 (edited) I've spent about 15 minutes looking for an answer for this but it's evaded me. I'm sure someone will be able to answer within seconds. When I press Shift+e I'd like to call a function. How do I add the 2nd key? HotKeySet("e", "funcf1") I've tried other combination but can't work out what is needed so that when I press left shift + e it calls Funcf1. Any help would be welcome. Regards Edited August 19, 2011 by Moosey
monoscout999 Posted August 19, 2011 Posted August 19, 2011 HotKeySet("+e", "funcf1") + = Shift ^ = Control ! = ALT It is all in the help file, look for Send() or in the Apendix the part Send Key List.
Rogue5099 Posted August 20, 2011 Posted August 20, 2011 HotKeySet("E", "funcf1") --> Shift+e HotKeySet("!E", "funcf1") --> Alt+Shift+e HotKeySet("!^e", "funcf1") --> Alt+Ctrl+e My projects: Inventory / Mp3 Inventory, Computer Stats
monoscout999 Posted August 20, 2011 Posted August 20, 2011 HotKeySet("E", "funcf1") --> Shift+eHotKeySet("!E", "funcf1") --> Alt+Shift+eHotKeySet("!^e", "funcf1") --> Alt+Ctrl+eThat is wrong. i didn`t test it... but in case that it works, what happends if you have the CAPS LOCK on?
Moosey Posted August 20, 2011 Author Posted August 20, 2011 Awesome that helped enough. Thanks for responses.
Rogue5099 Posted August 20, 2011 Posted August 20, 2011 That is wrong. i didn`t test it... but in case that it works, what happends if you have the CAPS LOCK on?It works, but if you have CAPS LOCK on then it doesn't work!Who keeps CAPS LOCK on anyways lol. Good catch thanks! My projects: Inventory / Mp3 Inventory, Computer Stats
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