Thanks !
At the moment I got this:
HotKeySet("{}", "IB")
Func IB()
MouseClick ( "left" [, 1100, 194 [, 1 [, 10]]] )
MouseClick ( "left" [, 530, 284 [, 1 [, 10]]] )
{Enter}
HotKeySet("{/}")
Send("{/}")
HotKeySet("{/}", "IB")
EndFunc
Maybe it's a lot easier to do with only the mouse? Then one click automatically does 3 at a time?
If MouseClick ( "left" [, x, y [, 1 [, 10]]] ) Then
MouseClick ( "left" [, 1100, 194 [, 1 [, 10]]] )
MouseClick ( "left" [, 530, 284 [, 1 [, 10]]] )
{Enter}
The program should be running at all time; whenever I click the left mouse button, the sequence activates.
I'm thinking I'm going to use the mousewheelbutton, because I never use that one.
Let me know what you think!