Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

Mouse questions... Rocker effect, extra buttons


  • Please log in to reply
4 replies to this topic
brand
  • Members
  • 21 posts
  • Last active: Dec 15 2006 10:10 PM
  • Joined: 07 Dec 2006
Hello,

I have two questions:


1) Any way to capture a rocker effect, assign it to a hot key (left button down, right click, left button up)?

2) Capture the extra buttons on my microsoft mouse, assign them to a hotkey even though they have assigned functions (like doubleclick)? The intellipoint driver must take over and change the command before the mouse keys get read as just the mouse keys. Any ideas?


Thanks,

Matt

skwire
  • Moderators
  • 279 posts
  • Last active: Aug 12 2014 05:16 PM
  • Joined: 18 Jan 2006

1) Any way to capture a rocker effect, assign it to a hot key (left button down, right click, left button up)?


~LButton & RButton::
{
    ; Do stuff here
}


brand
  • Members
  • 21 posts
  • Last active: Dec 15 2006 10:10 PM
  • Joined: 07 Dec 2006

1) Any way to capture a rocker effect, assign it to a hot key (left button down, right click, left button up)?


~LButton & RButton::
{
    ; Do stuff here
}


neat.

I assume that the ~ to will have the same effect with any hotkey?

skwire
  • Moderators
  • 279 posts
  • Last active: Aug 12 2014 05:16 PM
  • Joined: 18 Jan 2006
The tilde (~) allows a hotkey's native function to pass through. In other words, your left and right clicking would not be wholly taken over by using the hotkey demonstrated above. Make sense? If it doesn't, just try the hotkey without the tilde and all will become clear. =]

<!-- m -->http://www.autohotke...ocs/Hotkeys.htm<!-- m -->

brand
  • Members
  • 21 posts
  • Last active: Dec 15 2006 10:10 PM
  • Joined: 07 Dec 2006
ahhhh Hahhh!

excellent!

Thanks!