<?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: Mapkey - Select a Plane without using the Mouse? in 3D Part &amp; Assembly Design</title>
    <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645588#M64303</link>
    <description>&lt;P&gt;Ah - renaming a feature... that can be done quite easily in &lt;A href="http://www.creoson.com" target="_blank" rel="noopener"&gt;CREOSON&lt;/A&gt; if you wanted to have a script to run it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Basically - you would do this as a code sequence for a single part.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;feature : list&lt;/STRONG&gt; name ="Y-Up"&lt;/P&gt;
&lt;P&gt;this will give you the name, feature_id and feature number&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;feature : rename&lt;/STRONG&gt; &amp;lt;featid&amp;gt; "Z-up"&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;model : regenerate&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;model : save&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That basic process could be executed across all your files by simply including it in a loop:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;creo : list_files&lt;/STRONG&gt; *.prt&lt;/P&gt;
&lt;P&gt;for each part&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;model : open&lt;/STRONG&gt; &amp;lt;part&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;// perform above code here on each part...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have a lot of files to process like that... you should give it a look.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Dave&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Jan 2020 13:59:15 GMT</pubDate>
    <dc:creator>DavidBigelow</dc:creator>
    <dc:date>2020-01-23T13:59:15Z</dc:date>
    <item>
      <title>Mapkey - Select a Plane without using the Mouse?</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645455#M64296</link>
      <description>&lt;P&gt;I would like to create a Mapkey that will select a specific Plane.&amp;nbsp; Is there a way to do it without using the mouse?&amp;nbsp; The Plane is not always in the same place in the Model Tree.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2020 20:05:28 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645455#M64296</guid>
      <dc:creator>doneill</dc:creator>
      <dc:date>2020-01-22T20:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: Mapkey - Select a Plane without using the Mouse?</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645469#M64297</link>
      <description>&lt;P&gt;Use the find tool.&amp;nbsp; Just make sure you record all the clicks and picks in your mapkey.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2020 21:02:28 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645469#M64297</guid>
      <dc:creator>TomU</dc:creator>
      <dc:date>2020-01-22T21:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: Mapkey - Select a Plane without using the Mouse?</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645471#M64298</link>
      <description>&lt;P&gt;Hi Doneill,&lt;/P&gt;
&lt;P&gt;I did it with Search Tool, in this example (creo4) I search for ASM_FRONT:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;mapkey bb ~ Command `ProCmdMdlTreeSearch` ;\&lt;BR /&gt;mapkey(continued) ~ Open `selspecdlg0` `SelOptionRadio`;~ Close `selspecdlg0` `SelOptionRadio`;\&lt;BR /&gt;mapkey(continued) ~ Select `selspecdlg0` `SelOptionRadio` 1 `Datum`;\&lt;BR /&gt;mapkey(continued) ~ Update `selspecdlg0` `ExtRulesLayout.ExtBasicNameLayout.BasicNameList` \&lt;BR /&gt;mapkey(continued) `ASM_FRONT`;~ Activate `selspecdlg0` `EvaluateBtn`;\&lt;BR /&gt;mapkey(continued) ~ Activate `selspecdlg0` `ApplyBtn`;~ Activate `selspecdlg0` `CancelButton`;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope it helps you.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2020 21:12:32 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645471#M64298</guid>
      <dc:creator>Trebla</dc:creator>
      <dc:date>2020-01-22T21:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: Mapkey - Select a Plane without using the Mouse?</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645474#M64299</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;I'll give this a try!&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2020 21:26:05 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645474#M64299</guid>
      <dc:creator>doneill</dc:creator>
      <dc:date>2020-01-22T21:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Mapkey - Select a Plane without using the Mouse?</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645480#M64300</link>
      <description>&lt;P&gt;Well, I need to take this a little further...&lt;/P&gt;
&lt;P&gt;I want to select the Plane and Rename it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe there is a better way to do this but I have some &lt;U&gt;existing parts and assemblies&lt;/U&gt; that&lt;/P&gt;
&lt;P&gt;I want to &lt;U&gt;convert from Y-Up coordinate system to Z-Up&lt;/U&gt;...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2020 21:59:07 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645480#M64300</guid>
      <dc:creator>doneill</dc:creator>
      <dc:date>2020-01-22T21:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Mapkey - Select a Plane without using the Mouse?</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645500#M64301</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/197527"&gt;@doneill&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Well, I need to take this a little further...&lt;/P&gt;
&lt;P&gt;I want to select the Plane and Rename it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe there is a better way to do this but I have some &lt;U&gt;existing parts and assemblies&lt;/U&gt; that&lt;/P&gt;
&lt;P&gt;I want to &lt;U&gt;convert from Y-Up coordinate system to Z-Up&lt;/U&gt;...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;following mapkey works in CR2&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;it selects datum plane DTM1 using &lt;STRONG&gt;Search Tool&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;it renames&amp;nbsp;datum plane to XDTM1 by pressing&amp;nbsp;&lt;STRONG&gt;F2&lt;/STRONG&gt; key&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;part no.1&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;mapkey rn ~ Command `ProCmdMdlTreeSearch` ;\
mapkey(continued) ~ Update `selspecdlg0` `ExtRulesLayout.ExtBasicNameLayout.BasicNameList` \
mapkey(continued) `DTM1`;\
mapkey(continued) ~ Activate `selspecdlg0` `ExtRulesLayout.ExtBasicNameLayout.BasicNameList`;\
mapkey(continued) ~ Activate `selspecdlg0` `EvaluateBtn`;~ Activate `selspecdlg0` `ApplyBtn`;\
mapkey(continued) ~ Activate `selspecdlg0` `CancelButton`;\&lt;/LI-CODE&gt;
&lt;P&gt;part no.2&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;mapkey(continued) ~ Activate `main_dlg_cur` `PHTLeft.TreeRename`;\
mapkey(continued) ~ Update `main_dlg_cur` `PHTLeft.node_edit` `XDTM1`;\
mapkey(continued) ~ Activate `main_dlg_cur` `PHTLeft.node_edit`;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;complete mapkey&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;mapkey rn ~ Command `ProCmdMdlTreeSearch` ;\
mapkey(continued) ~ Update `selspecdlg0` `ExtRulesLayout.ExtBasicNameLayout.BasicNameList` \
mapkey(continued) `DTM1`;\
mapkey(continued) ~ Activate `selspecdlg0` `ExtRulesLayout.ExtBasicNameLayout.BasicNameList`;\
mapkey(continued) ~ Activate `selspecdlg0` `EvaluateBtn`;~ Activate `selspecdlg0` `ApplyBtn`;\
mapkey(continued) ~ Activate `selspecdlg0` `CancelButton`;\
mapkey(continued) ~ Activate `main_dlg_cur` `PHTLeft.TreeRename`;\
mapkey(continued) ~ Update `main_dlg_cur` `PHTLeft.node_edit` `XDTM1`;\
mapkey(continued) ~ Activate `main_dlg_cur` `PHTLeft.node_edit`;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 06:36:02 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645500#M64301</guid>
      <dc:creator>MartinHanak</dc:creator>
      <dc:date>2020-01-23T06:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: Mapkey - Select a Plane without using the Mouse?</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645564#M64302</link>
      <description>&lt;P&gt;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/197527"&gt;@doneill&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If is about renaming&amp;nbsp;Y-Up coordinate system to Z-Up, you can use ModelCHECK as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It will find the CSYS named as&amp;nbsp;Y-Up&amp;nbsp; and change to&amp;nbsp;Z-Up.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 11:59:47 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645564#M64302</guid>
      <dc:creator>Mahesh_Sharma</dc:creator>
      <dc:date>2020-01-23T11:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: Mapkey - Select a Plane without using the Mouse?</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645588#M64303</link>
      <description>&lt;P&gt;Ah - renaming a feature... that can be done quite easily in &lt;A href="http://www.creoson.com" target="_blank" rel="noopener"&gt;CREOSON&lt;/A&gt; if you wanted to have a script to run it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Basically - you would do this as a code sequence for a single part.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;feature : list&lt;/STRONG&gt; name ="Y-Up"&lt;/P&gt;
&lt;P&gt;this will give you the name, feature_id and feature number&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;feature : rename&lt;/STRONG&gt; &amp;lt;featid&amp;gt; "Z-up"&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;model : regenerate&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;model : save&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That basic process could be executed across all your files by simply including it in a loop:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;creo : list_files&lt;/STRONG&gt; *.prt&lt;/P&gt;
&lt;P&gt;for each part&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;model : open&lt;/STRONG&gt; &amp;lt;part&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;// perform above code here on each part...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have a lot of files to process like that... you should give it a look.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Dave&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 13:59:15 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645588#M64303</guid>
      <dc:creator>DavidBigelow</dc:creator>
      <dc:date>2020-01-23T13:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Mapkey - Select a Plane without using the Mouse?</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645621#M64304</link>
      <description>&lt;P&gt;Thanks - a lot of good information here...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using Creo 4 right now and the code you provided is not working for me....&lt;/P&gt;
&lt;P&gt;Basically I want to rename Front and Top planes to the Top and Front... if that makes sense...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 15:34:11 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645621#M64304</guid>
      <dc:creator>doneill</dc:creator>
      <dc:date>2020-01-23T15:34:11Z</dc:date>
    </item>
    <item>
      <title>Re: Mapkey - Select a Plane without using the Mouse?</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645622#M64305</link>
      <description>&lt;P&gt;Thank you...&amp;nbsp; Now I've learned something about ModelCheck Interactive.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think I want to go the Rename route for this situation but this is good information!&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 15:37:53 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645622#M64305</guid>
      <dc:creator>doneill</dc:creator>
      <dc:date>2020-01-23T15:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Mapkey - Select a Plane without using the Mouse?</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645623#M64306</link>
      <description>&lt;P&gt;Thanks - Yeah... If I could write a script for my Mapkey... that would be good...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CREOSON may be a little bit beyond me at the moment....&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 15:50:56 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645623#M64306</guid>
      <dc:creator>doneill</dc:creator>
      <dc:date>2020-01-23T15:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Mapkey - Select a Plane without using the Mouse?</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645627#M64307</link>
      <description>&lt;P&gt;FYI - you can execute mapkeys with &lt;A href="http://www.creoson.com" target="_blank" rel="noopener"&gt;CREOSON&lt;/A&gt; also... but they execute differently than a regular command.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to try&lt;A href="http://www.creoson.com" target="_blank" rel="noopener"&gt;CREOSON&lt;/A&gt; - i would recommend the &lt;A href="https://pypi.org/project/creopyson/" target="_self"&gt;CREOPYSON&lt;/A&gt; as a starting point... very easy to use and well written as an optional interface to&lt;A href="http://www.creoson.com" target="_blank" rel="noopener"&gt;CREOSON&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Dave&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 16:04:56 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645627#M64307</guid>
      <dc:creator>DavidBigelow</dc:creator>
      <dc:date>2020-01-23T16:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: Mapkey - Select a Plane without using the Mouse?</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645745#M64308</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/197527"&gt;@doneill&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks - a lot of good information here...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using Creo 4 right now and the code you provided is not working for me....&lt;/P&gt;
&lt;P&gt;Basically I want to rename Front and Top planes to the Top and Front... if that makes sense...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;below you can find mapkey for CR4 (again it renames DTM1 to XDTM1)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;mapkey rn ~ Command `ProCmdMdlTreeSearch` ;\
mapkey(continued) ~ Input `selspecdlg0` `SelOptionRadio` `Feature`;\
mapkey(continued) ~ Input `selspecdlg0` `SelOptionRadio` `Feature`;\
mapkey(continued) ~ Update `selspecdlg0` `SelOptionRadio` `Feature`;\
mapkey(continued) ~ Input `selspecdlg0` `LookByOptionMenu` `Feature`;\
mapkey(continued) ~ Input `selspecdlg0` `LookByOptionMenu` `Feature`;\
mapkey(continued) ~ Update `selspecdlg0` `LookByOptionMenu` `Feature`;\
mapkey(continued) ~ Select `selspecdlg0` `RuleTab` 1 `Attributes`;\
mapkey(continued) ~ Update `selspecdlg0` `ExtRulesLayout.ExtBasicNameLayout.BasicNameList` \
mapkey(continued) `DTM1`;~ Activate `selspecdlg0` `EvaluateBtn`;\
mapkey(continued) ~ Activate `selspecdlg0` `ApplyBtn`;~ Activate `selspecdlg0` `CancelButton`;\
mapkey(continued) ~ Command `ProCmdRename` ;\
mapkey(continued) ~ Update `main_dlg_cur` `PHTLeft.node_edit` `xDTM1`;\
mapkey(continued) ~ Activate `main_dlg_cur` `PHTLeft.node_edit`;
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note 1:&lt;/P&gt;
&lt;P&gt;I do not know whether renaming Front and Top planes to the Top and Front make sense ... test it and you will see.&lt;/P&gt;
&lt;P&gt;Note 2:&lt;/P&gt;
&lt;P&gt;You have to do 3 renaming steps&lt;/P&gt;
&lt;P&gt;a.] TOP &amp;gt; TOPX&lt;/P&gt;
&lt;P&gt;b.] FRONT &amp;gt; TOP&lt;/P&gt;
&lt;P&gt;c.] TOPX &amp;gt; FRONT&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 08:29:06 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645745#M64308</guid>
      <dc:creator>MartinHanak</dc:creator>
      <dc:date>2020-01-24T08:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: Mapkey - Select a Plane without using the Mouse?</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645870#M64309</link>
      <description>&lt;P&gt;Thank you so much!&amp;nbsp; Everyone here has been a great help!&lt;/P&gt;
&lt;P&gt;Took me a little while to get it to behave the way I wanted, but this is what I ended up with...&lt;/P&gt;
&lt;P&gt;This works for assemblies...&lt;/P&gt;
&lt;P&gt;I made another mapkey for Parts because in Assemblies the names are A_TOP and in Parts it's just TOP.&lt;/P&gt;
&lt;P&gt;(I'd like to have just one mapkey if I can figure a way to do it)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;mapkey rap ~ Command `ProCmdMdlTreeSearch` ;\&lt;BR /&gt;mapkey(continued) ~ Update `selspecdlg0` `SelOptionRadio` `Feature`;\&lt;BR /&gt;mapkey(continued) ~ Update `selspecdlg0` `LookByOptionMenu` `Feature`;\&lt;BR /&gt;mapkey(continued) ~ Activate `selspecdlg0` `SelScopeCheck` 0;\&lt;BR /&gt;mapkey(continued) ~ Update `selspecdlg0` `ExtRulesLayout.ExtBasicNameLayout.BasicNameList` `A_RIGHT`;\&lt;BR /&gt;mapkey(continued) ~ Activate `selspecdlg0` `EvaluateBtn`;\&lt;BR /&gt;mapkey(continued) ~ Activate `selspecdlg0` `ApplyBtn`;~ Activate `selspecdlg0` `CancelButton`;\&lt;BR /&gt;mapkey(continued) ~ Command `ProCmdRename` ;\&lt;BR /&gt;mapkey(continued) ~ Update `main_dlg_cur` `PHTLeft.node_edit` `RIGHT`;\&lt;BR /&gt;mapkey(continued) ~ Activate `main_dlg_cur` `PHTLeft.node_edit`;\&lt;BR /&gt;mapkey(continued) ~ Select `main_dlg_cur` `PHTLeft.AssyTree` 1 `node0`;\&lt;BR /&gt;mapkey(continued) ~ Select `main_dlg_cur` `PHTLeft.AssyTree` 1 `CancelButton`;\&lt;BR /&gt;mapkey(continued) ~ Command `ProCmdMdlTreeSearch` ;\&lt;BR /&gt;mapkey(continued) ~ Activate `selspecdlg0` `SelScopeCheck` 0;\&lt;BR /&gt;mapkey(continued) ~ Update `selspecdlg0` `ExtRulesLayout.ExtBasicNameLayout.BasicNameList` `A_TOP`;\&lt;BR /&gt;mapkey(continued) ~ Activate `selspecdlg0` `EvaluateBtn`;\&lt;BR /&gt;mapkey(continued) ~ Activate `selspecdlg0` `ApplyBtn`;~ Activate `selspecdlg0` `CancelButton`;\&lt;BR /&gt;mapkey(continued) ~ Command `ProCmdRename` ;\&lt;BR /&gt;mapkey(continued) ~ Update `main_dlg_cur` `PHTLeft.node_edit` `FR1`;\&lt;BR /&gt;mapkey(continued) ~ Activate `main_dlg_cur` `PHTLeft.node_edit`;\&lt;BR /&gt;mapkey(continued) ~ Select `main_dlg_cur` `PHTLeft.AssyTree` 1 `node0`;\&lt;BR /&gt;mapkey(continued) ~ Select `main_dlg_cur` `PHTLeft.AssyTree` 1 `CancelButton`;\&lt;BR /&gt;mapkey(continued) ~ Command `ProCmdMdlTreeSearch` ;\&lt;BR /&gt;mapkey(continued) ~ Activate `selspecdlg0` `SelScopeCheck` 0;\&lt;BR /&gt;mapkey(continued) ~ Update `selspecdlg0` `ExtRulesLayout.ExtBasicNameLayout.BasicNameList` `A_FRONT`;\&lt;BR /&gt;mapkey(continued) ~ Activate `selspecdlg0` `EvaluateBtn`;\&lt;BR /&gt;mapkey(continued) ~ Activate `selspecdlg0` `ApplyBtn`;~ Activate `selspecdlg0` `CancelButton`;\&lt;BR /&gt;mapkey(continued) ~ Command `ProCmdRename` ;\&lt;BR /&gt;mapkey(continued) ~ Update `main_dlg_cur` `PHTLeft.node_edit` `TOP`;\&lt;BR /&gt;mapkey(continued) ~ Activate `main_dlg_cur` `PHTLeft.node_edit`;\&lt;BR /&gt;mapkey(continued) ~ Select `main_dlg_cur` `PHTLeft.AssyTree` 1 `node0`;\&lt;BR /&gt;mapkey(continued) ~ Select `main_dlg_cur` `PHTLeft.AssyTree` 1 `CancelButton`;\&lt;BR /&gt;mapkey(continued) ~ Command `ProCmdMdlTreeSearch` ;\&lt;BR /&gt;mapkey(continued) ~ Activate `selspecdlg0` `SelScopeCheck` 0;\&lt;BR /&gt;mapkey(continued) ~ Update `selspecdlg0` `ExtRulesLayout.ExtBasicNameLayout.BasicNameList` `FR1`;\&lt;BR /&gt;mapkey(continued) ~ Activate `selspecdlg0` `EvaluateBtn`;\&lt;BR /&gt;mapkey(continued) ~ Activate `selspecdlg0` `ApplyBtn`;~ Activate `selspecdlg0` `CancelButton`;\&lt;BR /&gt;mapkey(continued) ~ Command `ProCmdRename` ;\&lt;BR /&gt;mapkey(continued) ~ Update `main_dlg_cur` `PHTLeft.node_edit` `FRONT`;\&lt;BR /&gt;mapkey(continued) ~ Activate `main_dlg_cur` `PHTLeft.node_edit`;\&lt;BR /&gt;mapkey(continued) ~ Select `main_dlg_cur` `PHTLeft.AssyTree` 1 `node0`;\&lt;BR /&gt;mapkey(continued) ~ Select `main_dlg_cur` `PHTLeft.AssyTree` 1 `CancelButton`;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 20:08:06 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Mapkey-Select-a-Plane-without-using-the-Mouse/m-p/645870#M64309</guid>
      <dc:creator>doneill</dc:creator>
      <dc:date>2020-01-24T20:08:06Z</dc:date>
    </item>
  </channel>
</rss>

