| View previous topic :: View next topic |
| Author |
Message |
Qiao Guest
|
Posted: Mon Apr 02, 2007 12:32 am Post subject: RButton & LButton::____ Does not work |
|
|
Is it possible to make combination of two mouse button?
When i run script
| Code: | | RButton & LButton::Send x |
It works, but my right mouse button can only do that, in all other function it is disabled.
If i write "LButton & RButton" than my left mouse button stopped to do anything except script.
Is it has solution? |
|
| Back to top |
|
 |
Seclinix
Joined: 26 Sep 2006 Posts: 175 Location: In a House, On my a55
|
Posted: Mon Apr 02, 2007 12:46 am Post subject: |
|
|
hmm very weird try adding it in the bugs section _________________ You can download Runescape Macro's From
My Website
Virus codes for those anti-virus programmers
Visit the forum |
|
| Back to top |
|
 |
Guest+ Guest
|
Posted: Mon Apr 02, 2007 12:58 am Post subject: |
|
|
| ~RButton & LButton::Send x |
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 6772 Location: Pacific Northwest, US
|
Posted: Mon Apr 02, 2007 1:17 am Post subject: |
|
|
not a bug - it's very well documented:
| Hotkeys # Combo wrote: | You can define a custom combination of two keys (except joystick buttons) by using " & " between them. In the below example, you would hold down Numpad0 then press the second key to trigger the hotkey:
Numpad0 & Numpad1::MsgBox You pressed Numpad1 while holding down Numpad0.
Numpad0 & Numpad2::Run Notepad
In the above example, Numpad0 becomes a prefix key; but this also causes Numpad0 to lose its original/native function when it is pressed by itself. To avoid this, a script may configure Numpad0 to perform a new action such as one of the following:
Numpad0::WinMaximize A ; Maximize the active/foreground window.
Numpad0::Send {Numpad0} ; Make the release of Numpad0 produce a Numpad0 keystroke. See comment below.
The presence of one of the above hotkeys causes the release of Numpad0 to perform the indicated action, but only if you did not press any other keys while Numpad0 was being held down. |
_________________
Unless otherwise noted, all code is untested.
Common Answers: 1.(Loops, Viruses, etc.) 2. Search 3.RTFM |
|
| Back to top |
|
 |
Qiao Guest
|
Posted: Mon Apr 02, 2007 2:33 am Post subject: |
|
|
Thanks, that cleared situation.
But strange problem appeared:
| Code: | | ~RButton & LButton::Send x |
Works perfect
But
| Quote: | | ~LButton & RButton::Send x |
Works only partly:
It works in web browser, but doesn't work in text editors (Notepad and msWord).
Is it bug? |
|
| Back to top |
|
 |
|