| View previous topic :: View next topic |
| Author |
Message |
Randomscrub Guest
|
Posted: Tue Sep 02, 2008 5:49 pm Post subject: Remap XButtons to ALT and CTRL |
|
|
Okay, so I have this Logitech mouse, but the software is really buggy if you are forced to reformat or reinstall windows..or some other way lose all drivers.
Even reinstalling doesn't let you remap the mouse keys, its a known bug on the logitech forums.
But I used to use this program to use Multiple Windows of a video game, and I was curious...is there a simple way to make :
XButton1::Alt
XButton2::Ctrl
I tried that code, and it didn't work for me...Any help?
[ Moderator!: Original subject line "Help." changed] |
|
| Back to top |
|
 |
PurloinedHeart
Joined: 04 Apr 2008 Posts: 209 Location: Canada
|
Posted: Tue Sep 02, 2008 11:17 pm Post subject: |
|
|
Try
| Code: |
Alt::XButton1
Ctrl::XButton2
|
|
|
| Back to top |
|
 |
[VxE]
Joined: 07 Oct 2006 Posts: 1496
|
Posted: Wed Sep 03, 2008 12:28 am Post subject: |
|
|
If those buttons do not show anything in AHK's keyhistory, then you can try using Micha's HID support to at least detect when the buttons are pressed.
For most logitech mice, the 4th and 5th buttons will work OK just using the regular old windows pointing device drivers. | Code: | $LButton up:: ; to access the key history with the mouse hook installed
Hotkey, $LButton up, off
Keyhistory
WinWaitClose, %A_ScriptFullPath%
exitapp
return |
_________________ My Home Thread
More Common Answers: [1]. It's in the FAQ [2]. Ternary ( a ? b : c ) guide [3]. Post code inside [code][/code] tags ! |
|
| Back to top |
|
 |
|