Delta Posted October 12, 2009 Posted October 12, 2009 (edited) I want to use special keys such as {LCTRL} {SPACE} and all the others in functions other than Send, ControlSend, etc. Do these keys act as variables or does AutoiIt convert them? Right now I'm using constants to define SPACE, CONTROL, RETURN, and the list goes on. It works but it would be easier to use something built into AutoIt. Below is what I'm doing right now. Const $SHIFT = 0x10 Const $CONTROL = 0x11 Const $MENU = 0x12 Const $ESCAPE = 0x1B Const $BACK = 0x08 Const ... = ... Edit: Never mind I'm an idiot. A little trial an error and I figured out what I needed to know. Edited October 12, 2009 by Deltaforce229 [size="1"]Please stop confusing "how to" with "how do"[/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