Help - Search - Members - Calendar
Full Version: Hold Alt + R
AC Tools Everything Macro > AC Tool Macros > Other Macros
7oxa
I made a little script for myself, but i realy need the Alt+r to work (same as alt+tab ; to switch windows)
I tryed this script for it :

Alt - Q
KeyDown Q 5000
Keys R 3000

------------------------------------------
The whole script looks like this :

SetActiveWindow Beecz

Loop 99999
Keys {f8} 2000
Keys {RETURN} 2000

Alt - Q
KeyDown {Q} 2000
Keys R 2000

LeftMouseDown 2000
LeftMouseDown 2000


End



And i get error, any dieas ?

Thanks in addition
Bear
CODE
SetActiveWindow Beecz
Loop 99999
  Keys {f8} 2000
  Keys {RETURN} 2000
  Keys @R 2000
  LeftMouseDown 2000
  LeftMouseDown 2000
End


Alt, Shift, Ctrl - Look under Shift/Control Characters

As too Alt-Tab? Why, just use SetActiveWindow to the New Window..
7oxa
First of all thx alot, the alt+r seems to work, 1/2 of the cases ^^ but ill keep playing with it until i get 100% reaction
Second the script looks like this now:

It suppos to this :
1. F8;ENTER
2. Alt+R;TwiseLeftMouseClick
*With delay of 2000~5000 between each line

SetActiveWindow Beecz
Loop 99999
Delay 5000
Keys {f8}
Delay 5000
Keys {RETURN}
Delay 5000
Keys @R 2000
Delay 5000
LeftMouseDown 1000
Delay 5000
LeftMouseDown 1000
End

And for some reason, after @R it wont press the leftmouse as i want it to do, insetad it skeeps LeftMouseDown, does the F8;RETURN , and only then it does the mouse actions, so its like choses another order without my opinion biggrin.gif

It just seems to be all right, dont even have a clue what chould go wrong, do u see something in the script that i dont ?
Thx again for any kind of help.
Bear
QUOTE(7oxa @ Apr 10 2009, 08:07 AM) *
First of all thx alot, the alt+r seems to work, 1/2 of the cases ^^ but ill keep playing with it until i get 100% reaction
Second the script looks like this now:

It suppos to this :
1. F8;ENTER
2. Alt+R;TwiseLeftMouseClick
*With delay of 2000~5000 between each line

SetActiveWindow Beecz
Loop 99999
Delay 5000
Keys {f8}
Delay 5000
Keys {RETURN}
Delay 5000
Keys @R 2000
Delay 5000
LeftMouseDown 1000
Delay 5000
LeftMouseDown 1000
End

And for some reason, after @R it wont press the leftmouse as i want it to do, insetad it skeeps LeftMouseDown, does the F8;RETURN , and only then it does the mouse actions, so its like choses another order without my opinion biggrin.gif

It just seems to be all right, dont even have a clue what chould go wrong, do u see something in the script that i dont ?
Thx again for any kind of help.


ok, LeftMouseDown is not a good thing to use, you might want LeftClick, Using LeftMouseDown means it's gonna hold down the left mouse Button until you Release it (LeftMouseUP).
CODE
SetActiveWindow Beecz
Loop 99999
  Delay 5000
  Keys {f8}
  Delay 5000
  Keys {RETURN}
  Delay 5000
  Keys @R
  Loop 2
    Delay 5000
    LeftClick
  End
End
7oxa
Wow man, thx alot, atleast i have some idea now about how things are working...
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2010 Invision Power Services, Inc.