Inside click?
Moderators: Dorian (MJT support), JRL
Inside click?
Instead of the mouse actually moving, is there a command for a inside click. So like when your playing a Slots game you can just have the bet max button in view but you can still do anything without the mouse moving and interupting when clicking? Does any one catch what im saying.
- Marcus Tettmar
- Site Admin
- Posts: 7393
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
There is the PushButton command. This sends the windows messages that are fired when a button is pressed. So no need to move the mouse. But it will need to be a regular Windows button control. Otherwise, no, you can't click something without moving the mouse to it.
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
You already got it ! It's PushButton>
This command works by attempting to send the BM_CLICK message to the button when it finds a button in the specified window with the given caption.
This will only work with objects of the standard 'Button' class. It may not work for all buttons on all windows. For instance, it doesn't work for buttons on html documents in Netscape Navigator 4.05 or Internet Explorer 3.02, as they are not real buttons. For these use the MouseOver command.