stackover Posted March 24, 2007 Posted March 24, 2007 I m try to do a HotKey using combination of ctrl+alt .. is that possible ? I was trying HotKeySet ("{^!}", "Test") Thanks
therks Posted March 24, 2007 Posted March 24, 2007 Nope, can't use HotKeySet like this (pretty sure it's specifically mentioned in the helpfile), but have a look at IsPressed. Try something like this: If _IsPressed('11') And _IsPressed('12') Then Test() EndIf My AutoIt Stuff | My Github
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