View Single Post
  #13  
Old 06-16-2006, 08:27 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: NL Software/AHK request (+ reward)

[ QUOTE ]
Somebody please help me set this damn thing up to my logitech mx 1000 laser mouse. I don't have a mouse 3 button. I don't know how to configure some of the extra buttons.

[/ QUOTE ]

Roland posted a link before to all available hotkeys - I believe your extra buttons are referred to as XButton1 and XButton2.

The AHK documentation does not go further than this, so if you habe more than 2 spare mouse buttons I guess experimantation is in order to see if XButton3+ exist [img]/images/graemlins/smile.gif[/img]

you should perhaps try adding code such as this to top of the script and see if your extra buttons produce a message box:

<font class="small">Code:</font><hr /><pre>
XButton1::
MsgBox Xbtn1
return

XButton2::
MsgBox Xbtn2
return
</pre><hr />

If these pop up the message boxes, you then know what buttons are what, and can assign pot fractions etc as desired.


Good luck,

dave.
Reply With Quote