ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

Main Area and Open Discussion > Living Room

using 2 mice - can I have different settings for each?

<< < (3/4) > >>

Deozaan:
I wasn't sure if it would or not, I haven't used the software in a long time. Would there be some way that you could make an AHK program that would send the left mouse click when you physically right clicked, and vice verso
-nite_monkey (August 20, 2008, 04:08 PM)
--- End quote ---

it would have to be able to differentiate between the two mouses which I suspect might be impossible but it would be great
Any takers out there ?? or ideas on the subject ??
-tomos (August 21, 2008, 03:37 AM)
--- End quote ---

Another idea would possibly be an AHK shortcut that would toggle the mouse settings to be lefty or righty.

tomos:
Another idea would possibly be an AHK shortcut that would toggle the mouse settings to be lefty or righty.
-Deozaan (August 21, 2008, 01:36 PM)
--- End quote ---

was just thinking along the same lines myself this evening :Thmbsup:

tomos:
new thread in Post New Requests forum:
   
IDEA: hotkey to toggle left/right mouse buttons

skrommel:
 :) It's got nothing to do with the original post, but here's SwapMouseButtons!

Just press Windows-S to swap mouse buttons.

Skrommel


--- ---;SwapMouseButtons.ahk
; Press Windows-S to swap mouse buttons
;Skrommel @ 2008

#SingleInstance,Force
SendMode,Input
SetWindelay,0
SetKeyDelay,0

#s::
RegRead,swapped,HKEY_CURRENT_USER,Control Panel\Mouse,SwapMouseButtons
ToolTip,%swapped%
If swapped<>1
{
  Run,RUNDLL32 USER32.DLL`,SwapMouseButton
  RegWrite,REG_SZ,HKEY_CURRENT_USER,Control Panel\Mouse,SwapMouseButtons,1
}
Else
{
  Run,RUNDLL32.EXE SHELL32.dll`,Control_RunDLL main.cpl @0`,0
  WinWait,ahk_class #32770
  WinActivate,ahk_class #32770
  WinWaitActive,ahk_class #32770
  Send,%A_Space%{Enter}
  RegWrite,REG_SZ,HKEY_CURRENT_USER,Control Panel\Mouse,SwapMouseButtons,0
}
Return

tomos:
:) arrghhh, you're doing it again Skrommel (super :D !!!)

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version