Jump to content
Macro Express Forums

JRabe

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by JRabe

  1. I use a simple repeat trick from the help file by enclosing it all in: <REPEAT UNTIL Variable="%T[1]%" Condition="\x00" Value="999999999999999999999999"/> <END REPEAT/> One other symptom, sometimes even I can't left mouse click unless I 'jiggle' the mouse a little. In those cases I nudge the mouse a small amount and then I can click. I have also noticed that if I manually move the mouse to the button and then start the macro that it seems to work every time.
  2. I have a simple macro to make life easier for me. It moves the mouse between two buttons and left clicks them. Over and over. I control it (pause) using the scroll lock key. Problem is, when I activate the scroll lock key the macro often will not click the buttons. The mouse curser will move back and forth between the two buttons. But no left clicks are happening. Or if they are, they are not actually activating the buttons. No sound effect from the click and no results or actions that should happen from clicking the button(s). If I manually operate the mouse button to do a left click it usually begins clicking, but only that button. The mouse curser will move back and forth between the two buttons but only one of the buttons function is happening. If I press the scroll lock key to do something else and then resume, it normally will not click the buttons. If I manually activate the left click button on the mouse it will resume clicking that button, no matter where the mouse cursor is then relocated. I can manually move the mouse around and when the macro left clicks, that button will activate even though the mouse cursor is not hovering over it. Even if the mouse cursor is hovering over another button. I'll include the short macro. <GET KEY STATE Key="Scroll Lock" Dest="%ScrollLockState%"/> <IF VARIABLE Variable="%ScrollLockState%" Condition="\x00" Value="TRUE" IgnoreCase="FALSE"/> <MOUSE MOVE Option="\x01" X="1173" Y="616" _PROMPT="0x000A"/> <DELAY Flags="\x01" Time="1"/> <MOUSE LEFT CLICK/> <DELAY Flags="\x01" Time="1"/> <MOUSE MOVE Option="\x01" X="1172" Y="476" _PROMPT="0x000A"/> <DELAY Flags="\x01" Time="1"/> <MOUSE LEFT CLICK/> <DELAY Flags="\x01" Time="1"/> <END IF/>
×
×
  • Create New...