| View previous topic :: View next topic |
| Author |
Message |
Howdy Guest
|
Posted: Sat Jul 19, 2008 4:42 am Post subject: Mapping Right and Left Click to One Key |
|
|
Can someone tell me the code for this? I'm not good with computers . Thanks! |
|
| Back to top |
|
 |
SpiderGames
Joined: 09 Jun 2008 Posts: 281 Location: Canada
|
Posted: Sat Jul 19, 2008 4:52 am Post subject: |
|
|
do you want to press the Lbutton and Rbutton at the same time???
if you do you can trysomethign like this
| Code: |
LButton::
{
MouseClick, Right
return,
}
RButton::
{
MouseClick, Left
Return,
}
|
or if you want a hotkey to acctivate both...
| Code: |
s:: ; makes s the hotkey...
{
MouseCLick, Left
MouseClick, Right
}
|
_________________ http://www.spider-games77.piczo.com
Join the Elite few... |
|
| Back to top |
|
 |
Howdy Guest
|
Posted: Sat Jul 19, 2008 5:01 am Post subject: |
|
|
| Thanks a ton! |
|
| Back to top |
|
 |
Guest
|
Posted: Sat Jul 19, 2008 5:09 am Post subject: |
|
|
| How can I put a certain time delay between left and right clicking. ( Left Click comes first) Thanks! |
|
| Back to top |
|
 |
Speedzter
Joined: 23 Jun 2008 Posts: 28
|
Posted: Sat Jul 19, 2008 5:43 am Post subject: |
|
|
| Anonymous wrote: | | How can I put a certain time delay between left and right clicking. ( Left Click comes first) Thanks! |
| Code: | s:: ; change to the hotkey you want
{
MouseCLick, Left
Sleep, 100 ; Change to the timedelay you want (1000 = 1 sec)
MouseClick, Right
} |
|
|
| Back to top |
|
 |
Guest
|
Posted: Mon Aug 04, 2008 8:03 pm Post subject: |
|
|
hi im not rly good with computers to ^^
but i got a similar problem with one difference:
I dont want Hotkey i want to R-map my mouse and Keyboard keys.
I want to bind my Right Mousebutton to the keyboard key "s" and if possible the "s" key to the Righte Mousebutton. |
|
| Back to top |
|
 |
Guest
|
Posted: Mon Aug 04, 2008 8:07 pm Post subject: |
|
|
| Anonymous wrote: | hi im not rly good with computers to ^^
but i got a similar problem with one difference:
I dont want Hotkey i want to R-map my mouse and Keyboard keys.
I want to bind my Right Mousebutton to the keyboard key "s" and if possible the "s" key to the Righte Mousebutton. |
i wanted to Re-mapping not R-map ^^ |
|
| Back to top |
|
 |
Krogdor
Joined: 18 Apr 2008 Posts: 903 Location: The Interwebs
|
Posted: Mon Aug 04, 2008 11:21 pm Post subject: |
|
|
RButton::s
s::RButton |
|
| Back to top |
|
 |
Guest
|
Posted: Mon Aug 04, 2008 11:59 pm Post subject: |
|
|
| Krogdor wrote: | RButton::s
s::RButton |
omg that was far to easy ty i will try this ^^ |
|
| Back to top |
|
 |
|