<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Mouse Button Control</title>
	<atom:link href="http://www.ghacks.net/2008/06/02/mouse-button-control/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net/2008/06/02/mouse-button-control/</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Wed, 25 Nov 2009 04:13:22 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: r3</title>
		<link>http://www.ghacks.net/2008/06/02/mouse-button-control/#comment-906365</link>
		<dc:creator>r3</dc:creator>
		<pubDate>Sun, 25 Oct 2009 22:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=4686#comment-906365</guid>
		<description>would it be possible to configure this:
simultaneous left an right click instead a double left click (to open a folder).
I used to have such a feature on a logitech mouse years ago.. 
I loved it !</description>
		<content:encoded><![CDATA[<p>would it be possible to configure this:<br />
simultaneous left an right click instead a double left click (to open a folder).<br />
I used to have such a feature on a logitech mouse years ago..<br />
I loved it !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Piter Sherman</title>
		<link>http://www.ghacks.net/2008/06/02/mouse-button-control/#comment-673133</link>
		<dc:creator>Piter Sherman</dc:creator>
		<pubDate>Wed, 11 Mar 2009 17:30:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=4686#comment-673133</guid>
		<description>It is nice, but it doesn’t support mice with more than 5 buttons, which is understandable. You may try HydraMouse, it’s the only program I’ve seen that supports mice with more than 5 buttons, regardless of manufacturer (plus it’s very configurable, application/game specific settings, macros etc.)</description>
		<content:encoded><![CDATA[<p>It is nice, but it doesn’t support mice with more than 5 buttons, which is understandable. You may try HydraMouse, it’s the only program I’ve seen that supports mice with more than 5 buttons, regardless of manufacturer (plus it’s very configurable, application/game specific settings, macros etc.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: photochopper</title>
		<link>http://www.ghacks.net/2008/06/02/mouse-button-control/#comment-561006</link>
		<dc:creator>photochopper</dc:creator>
		<pubDate>Mon, 08 Dec 2008 13:01:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=4686#comment-561006</guid>
		<description>OK.  So far this IS the next best thing since sliced bread!  I, too, hate bloatware and the problems setpoint was giving my multi-monitor setup HP laptop (also running Synaptic for the touch-pad).  I use Logitech MX600 series laser mouse (the one with volume and mute buttons that always worked).  Now I can assign both my useless Xtra buttons (physically, both on the left side of my right handed model) to features in Photoshop like &quot;fit to screen&quot; (assigned via ctrl-0 shortcut to menu item in the app and mapped in Xmouse).  Folks, just remember to look for the &quot;simulated keystrokes&quot; alphabetically sorted in the dropdown list of configurable options; I took me a bit to find this choice. Love it. *****</description>
		<content:encoded><![CDATA[<p>OK.  So far this IS the next best thing since sliced bread!  I, too, hate bloatware and the problems setpoint was giving my multi-monitor setup HP laptop (also running Synaptic for the touch-pad).  I use Logitech MX600 series laser mouse (the one with volume and mute buttons that always worked).  Now I can assign both my useless Xtra buttons (physically, both on the left side of my right handed model) to features in Photoshop like &#8220;fit to screen&#8221; (assigned via ctrl-0 shortcut to menu item in the app and mapped in Xmouse).  Folks, just remember to look for the &#8220;simulated keystrokes&#8221; alphabetically sorted in the dropdown list of configurable options; I took me a bit to find this choice. Love it. *****</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BAO DANG</title>
		<link>http://www.ghacks.net/2008/06/02/mouse-button-control/#comment-542437</link>
		<dc:creator>BAO DANG</dc:creator>
		<pubDate>Mon, 17 Nov 2008 15:29:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=4686#comment-542437</guid>
		<description>I have been using and do not find any wrong things yet.
Great!</description>
		<content:encoded><![CDATA[<p>I have been using and do not find any wrong things yet.<br />
Great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vijay Saraff</title>
		<link>http://www.ghacks.net/2008/06/02/mouse-button-control/#comment-361423</link>
		<dc:creator>Vijay Saraff</dc:creator>
		<pubDate>Thu, 05 Jun 2008 09:40:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=4686#comment-361423</guid>
		<description>Using Autohotkey is easier. Though i guess it is only applicable for people with basic scripting aptitude (it&#039;s easy). see example below

; Hotkeys for outlook to move between messages
#IfWinActive ahk_class rctrl_renwnd32 ;Outlook Message window
XButton2::^  ; Makes the MouseButton4 (back) go down, but only in Outlook Message window.
#IfWinActive  ; This puts subsequent remappings and hotkeys in effect for all windows.

#IfWinActive ahk_class XLMAIN ; Excel - move across sheets
XButton2::^PgUp
XButton1::^PgDn
#IfWinActive  ; This puts subsequent remappings and hotkeys in effect for all windows.

#IfWinActive WinMerge
XButton2::!Up
XButton1::!Down
#IfWinActive  ; This puts subsequent remappings and hotkeys in effect for all windows.</description>
		<content:encoded><![CDATA[<p>Using Autohotkey is easier. Though i guess it is only applicable for people with basic scripting aptitude (it&#8217;s easy). see example below</p>
<p>; Hotkeys for outlook to move between messages<br />
#IfWinActive ahk_class rctrl_renwnd32 ;Outlook Message window<br />
XButton2::^  ; Makes the MouseButton4 (back) go down, but only in Outlook Message window.<br />
#IfWinActive  ; This puts subsequent remappings and hotkeys in effect for all windows.</p>
<p>#IfWinActive ahk_class XLMAIN ; Excel &#8211; move across sheets<br />
XButton2::^PgUp<br />
XButton1::^PgDn<br />
#IfWinActive  ; This puts subsequent remappings and hotkeys in effect for all windows.</p>
<p>#IfWinActive WinMerge<br />
XButton2::!Up<br />
XButton1::!Down<br />
#IfWinActive  ; This puts subsequent remappings and hotkeys in effect for all windows.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: noob</title>
		<link>http://www.ghacks.net/2008/06/02/mouse-button-control/#comment-359817</link>
		<dc:creator>noob</dc:creator>
		<pubDate>Tue, 03 Jun 2008 13:46:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=4686#comment-359817</guid>
		<description>From the FAQ:

&quot;Can you add support for more buttons?

Unfortunately, XMouse is not a driver. It is only capable of responding the messages sent by the mouse driver. As far as I can see, the basic MS driver sends only messages for the first 5 buttons.
The new Logitech drivers for x64 also only send the first 5 buttons so I suspect, even with proper drivers, XMouse will only ever support 5 buttons.&quot;</description>
		<content:encoded><![CDATA[<p>From the FAQ:</p>
<p>&#8220;Can you add support for more buttons?</p>
<p>Unfortunately, XMouse is not a driver. It is only capable of responding the messages sent by the mouse driver. As far as I can see, the basic MS driver sends only messages for the first 5 buttons.<br />
The new Logitech drivers for x64 also only send the first 5 buttons so I suspect, even with proper drivers, XMouse will only ever support 5 buttons.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xpgeek</title>
		<link>http://www.ghacks.net/2008/06/02/mouse-button-control/#comment-359469</link>
		<dc:creator>xpgeek</dc:creator>
		<pubDate>Tue, 03 Jun 2008 05:03:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=4686#comment-359469</guid>
		<description>Great find! I too have a 5button logitech mouse, and hateee installing Setpoint just for the sole reason to customize a button.</description>
		<content:encoded><![CDATA[<p>Great find! I too have a 5button logitech mouse, and hateee installing Setpoint just for the sole reason to customize a button.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gunther</title>
		<link>http://www.ghacks.net/2008/06/02/mouse-button-control/#comment-359248</link>
		<dc:creator>gunther</dc:creator>
		<pubDate>Mon, 02 Jun 2008 22:37:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=4686#comment-359248</guid>
		<description>Seems interesting. I have a logitech wireless mouse keyboard set. Is there any software (an alternative to setpoint software by logitech) to assign those extra function keys that come with my logitech keyboard?</description>
		<content:encoded><![CDATA[<p>Seems interesting. I have a logitech wireless mouse keyboard set. Is there any software (an alternative to setpoint software by logitech) to assign those extra function keys that come with my logitech keyboard?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rarst</title>
		<link>http://www.ghacks.net/2008/06/02/mouse-button-control/#comment-359165</link>
		<dc:creator>Rarst</dc:creator>
		<pubDate>Mon, 02 Jun 2008 21:10:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=4686#comment-359165</guid>
		<description>I use rather ancient MX500 (the very first model) and it runs under MouseWare. Eats around 1.7Mb of memory and is rock stable (not a single issue in years).

Such a pity MouseWare was discontinued in favor of SetPoint. I wonder is it possible to use it with newer mice, never tried.

On subject of X-Mouse - manages only two extra buttons?.. Seems too little, even my ancient one has 5 extras.</description>
		<content:encoded><![CDATA[<p>I use rather ancient MX500 (the very first model) and it runs under MouseWare. Eats around 1.7Mb of memory and is rock stable (not a single issue in years).</p>
<p>Such a pity MouseWare was discontinued in favor of SetPoint. I wonder is it possible to use it with newer mice, never tried.</p>
<p>On subject of X-Mouse &#8211; manages only two extra buttons?.. Seems too little, even my ancient one has 5 extras.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
