questioner Posted December 13, 2009 Posted December 13, 2009 All I am trying to do is when I click a button say "T" it left mouse clicks and types "0" every second for quite a while until I hit "T" again. Can anyone help me with this? I searched the FAQ and could find nothing along the lines of where to find the command information to make this happen......
dantay9 Posted December 13, 2009 Posted December 13, 2009 If the button is made by you using your own gui, then you can use GuiGetMsg to detect when the button is clicked. If not, you will probably just use _IsPressed() to see if the left mouse is clicked. If it is, then check to see if the correct window is active and the mouse is in the correct spot. If all this is true, the button was pressed. MouseClick() will click the mouse for you and Send() will type stuff for you. All of this is in the help file too. Try this out and come back with your code if you have any questions.
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