<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Middle Mouse button customization in 3D Part &amp; Assembly Design</title>
    <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222640#M53430</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Javier,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+MButton::MButton&lt;/P&gt;&lt;P&gt;MButton::+MButton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the &lt;STRONG&gt;above&lt;/STRONG&gt; mentioned remapping will not work, because &lt;STRONG&gt;+MButton&lt;/STRONG&gt; is not single key/button. It is a combination of key and button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example the following remapping will work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MButton::RButton&lt;/P&gt;&lt;P&gt;RButton::MButton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sorry I can't help you. I spent some time looking for a solution, unfortunatelly without success &lt;IMG src="https://community.ptc.com/legacyfs/online/emoticons/sad.png" /&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martin Hanak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Aug 2015 08:51:49 GMT</pubDate>
    <dc:creator>MartinHanak</dc:creator>
    <dc:date>2015-08-20T08:51:49Z</dc:date>
    <item>
      <title>Middle Mouse button customization</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222637#M53427</link>
      <description>How can I change the behavior of the middle mouse button? I am new to Creo and Would like to make it so that I pan with the middle mouse button pressed and orbit with SHIFT+MMB. Basically the reverse of what it is currently set (I'm assuming as default) Also, is there a way</description>
      <pubDate>Thu, 03 May 2018 06:45:58 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222637#M53427</guid>
      <dc:creator>jcolon</dc:creator>
      <dc:date>2018-05-03T06:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Middle Mouse button customization</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222638#M53428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Javier,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reversing of zooming direction is mentioned in &lt;A href="https://www.ptcusercommunity.com/thread/84946"&gt;How to reverse the mouse wheel zoom&lt;/A&gt;. I guess that AutoHotkey is able to solve your first request ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martin Hanak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2015 06:32:08 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222638#M53428</guid>
      <dc:creator>MartinHanak</dc:creator>
      <dc:date>2015-08-19T06:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: Middle Mouse button customization</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222639#M53429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks martin. This helps. I do have a question, in that above mentioned thread it mentions a command for the AHK script...&lt;/P&gt;&lt;P&gt;#IfWinActive, ahk_class Dialog&lt;/P&gt;&lt;P&gt;WheelDown::WheelUp&lt;/P&gt;&lt;P&gt;WheelUp::WheelDown&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to replicate it with the middle mouse button behavior and thought maybe adding this bit...&lt;/P&gt;&lt;P&gt;#IfWinActive, ahk_class Dialog&lt;/P&gt;&lt;P&gt;+MButton::MButton&lt;/P&gt;&lt;P&gt;MButton::+MButton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a new script and I had this in there...&lt;/P&gt;&lt;P&gt;#NoEnv&amp;nbsp; ; Recommended for performance and compatibility with future AutoHotkey releases.&lt;/P&gt;&lt;P&gt;; #Warn&amp;nbsp; ; Enable warnings to assist with detecting common errors.&lt;/P&gt;&lt;P&gt;SendMode Input&amp;nbsp; ; Recommended for new scripts due to its superior speed and reliability.&lt;/P&gt;&lt;P&gt;SetWorkingDir %A_ScriptDir%&amp;nbsp; ; Ensures a consistent starting directory.&lt;/P&gt;&lt;P&gt;#IfWinActive, ahk_class Dialog&lt;/P&gt;&lt;P&gt;WheelDown::WheelUp&lt;/P&gt;&lt;P&gt;WheelUp::WheelDown&lt;/P&gt;&lt;P&gt;Return&lt;/P&gt;&lt;P&gt;#IfWinActive, ahk_class Dialog&lt;/P&gt;&lt;P&gt;+MButton::MButton&lt;/P&gt;&lt;P&gt;MButton::+MButton&lt;/P&gt;&lt;P&gt;Return&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the MMB behavior does not change. I saw the the + sign is for the SHIFT button, but I'm not sure what the command for the middle mouse button would be. I am totally ignorant on HTML coding, so most of this script is all above my head.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2015 15:57:53 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222639#M53429</guid>
      <dc:creator>jcolon</dc:creator>
      <dc:date>2015-08-19T15:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Middle Mouse button customization</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222640#M53430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Javier,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+MButton::MButton&lt;/P&gt;&lt;P&gt;MButton::+MButton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the &lt;STRONG&gt;above&lt;/STRONG&gt; mentioned remapping will not work, because &lt;STRONG&gt;+MButton&lt;/STRONG&gt; is not single key/button. It is a combination of key and button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example the following remapping will work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MButton::RButton&lt;/P&gt;&lt;P&gt;RButton::MButton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sorry I can't help you. I spent some time looking for a solution, unfortunatelly without success &lt;IMG src="https://community.ptc.com/legacyfs/online/emoticons/sad.png" /&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martin Hanak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 08:51:49 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222640#M53430</guid>
      <dc:creator>MartinHanak</dc:creator>
      <dc:date>2015-08-20T08:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: Middle Mouse button customization</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222641#M53431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, Thank you for your help, Martin. I will continue to look. The wheel direction command does work, so that is one annoying item down. These drafting programs should allow you to change these behaviors a bit easier than this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 12:37:10 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222641#M53431</guid>
      <dc:creator>jcolon</dc:creator>
      <dc:date>2015-08-20T12:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: Middle Mouse button customization</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222642#M53432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used to use a mouse button mapping software to set up a mouse that didn't have the correct drivers for a windows. It's really simple to set up and use. I think I used x-button mouse control. There are several available online, just search for mouse button mapping.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 12:45:33 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222642#M53432</guid>
      <dc:creator>StephenW</dc:creator>
      <dc:date>2015-08-20T12:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Middle Mouse button customization</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222643#M53433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am on the AHK help board trying to figure out the script for it all. I will post it here as reference for the future... If and when I get it, that is.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 12:21:00 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Middle-Mouse-button-customization/m-p/222643#M53433</guid>
      <dc:creator>jcolon</dc:creator>
      <dc:date>2015-08-21T12:21:00Z</dc:date>
    </item>
  </channel>
</rss>

