<?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: 2018 custom setup in PowerMill Forum</title>
    <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7374211#M25916</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;rmiller a écrit&amp;nbsp;:&lt;BR /&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3969139" target="_blank"&gt;@5axes&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Can you explain how you got the information to display in the QAT?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You can use the general variables to get the current information ie :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One Field give me the Current feedrate value in the active Toolpath -&amp;gt; Expression : &lt;STRONG&gt;'F ' + &lt;FONT color="#ff0000"&gt;$Toolpath&lt;/FONT&gt;.feedrate.cutting.value &lt;/STRONG&gt;This general variable are automaticaly updated by the software. It&amp;nbsp;works for informations on active $Toolpath , $Tool, $Boundary, $Workplane&amp;nbsp;etc etc ..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QAT.jpg" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/400579i6A53AEF387ACBB4E/image-size/large?v=v2&amp;amp;px=999" role="button" title="QAT.jpg" alt="QAT.jpg" /&gt;&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Some values are not available directly, so I'm using a macro to declare some &lt;STRONG&gt;session&lt;/STRONG&gt; variables&amp;nbsp; Ie : One field give me the total time of every toolpath in the active folder : &lt;STRONG&gt;$Session&lt;/STRONG&gt;.TotalTime&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;// Total times Calculation + Store in a $Session Variable :TotalTime
// Store in a $Session Variable :Folder
REAL $total_time = 0

// Session Variable to store the result
If NOT member($session._keys, "TotalTime") {
		      SESSIONPAR REAL TotalTime = 0
		   }
If NOT member($session._keys, "CFolder") {
		      SESSIONPAR STRING CFolder = "Toolpath"
		   }

// Active Folder
//get the active folder (if there is one)
STRING $a_f = active_folder()

//abort if there is no active folder
IF $a_f == '' {
  $a_f = "Toolpath"
}

//abort if the active folder is not in the toolpath mode
STRING LIST $Split = {}
$Split = TOKENS($a_f, "\")

IF $Split[0] != "Toolpath" {
  $a_f = "Toolpath"
}
		   
FOREACH tpath IN folder($a_f) {
	$total_time = total_time + $tpath.statistics.leadsandlinks.times.rapid
	$total_time = total_time + $tpath.statistics.leadsandlinks.times.plunge
	$total_time = total_time + $tpath.statistics.leadsandlinks.times.ramp
	$total_time = total_time + $tpath.statistics.leadsandlinks.times.others
	$total_time = total_time + $tpath.statistics.cuttingmoves.times.linear
	$total_time = total_time + $tpath.statistics.cuttingmoves.times.arcs
}

$session.CFolder = $a_f
$session.TotalTime = round($total_time,2)
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I need to update these informations I just click on the icon in the QAT closed to this field or using a shortcut F9&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QAT2.jpg" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/400589i39C114F53830716F/image-size/large?v=v2&amp;amp;px=999" role="button" title="QAT2.jpg" alt="QAT2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Sep 2017 17:55:34 GMT</pubDate>
    <dc:creator>5axes</dc:creator>
    <dc:date>2017-09-12T17:55:34Z</dc:date>
    <item>
      <title>2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7370504#M25911</link>
      <description>&lt;P&gt;would any of you care to share screen shots of how you've customized 2018 with the new interface? I would like to give it a fair shake before I make a decision on renewing maintenance or not, but I cannot use it out of the box the way it is. I'd like to see what some of the long term users have come up with to replace the toolbars.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 16:06:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7370504#M25911</guid>
      <dc:creator>TK.421</dc:creator>
      <dc:date>2017-09-11T16:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7370804#M25912</link>
      <description>&lt;P&gt;I'm not a big user of cutomized toolbar so on this point 2018 doesn't have change something. I'm only using 15 functions in my customzed toolbar , So on this point it's ok.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One of my toolbar was used to display some current informations with expression Field. I have migrate this toolbar in the QuickAccess Toolbar in order to always have this information on the screen .&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Modif.jpg" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/400132i209D982097F230EF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Modif.jpg" alt="Modif.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm much more a Personnel user menu fan and on this point nothing has change &lt;img id="heart" class="emoticon emoticon-heart" src="https://forums.autodesk.com/i/smilies/16x16_heart.png" alt="Heart" title="Heart" /&gt;. But I don't like the Ribbon because to access now to every function or toolbar you need to clic on the tab (Home, toolpath, Toolpath Edit , Simulation etc etc ) just to see your function so for every function you need to use in 2018 you need to add one more clic just to have an access to a group of function. At the end of the Day I would be really curious how many clic&amp;nbsp; you have done /compare to the previous release &lt;img id="smileymad" class="emoticon emoticon-smileymad" src="https://forums.autodesk.com/i/smilies/16x16_smiley-mad.png" alt="Smiley Mad" title="Smiley Mad" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using the ribbon style in Word and it's cool. Because in Word Most of the function I need are in the Home Tab , and In Word when I clic on an Image the system automatically activate the image edition menu. The ribbon is good for Word not for a CAM solution or not for this CAM solution as it have been implemented. And I don't really feal any benefits.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 17:48:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7370804#M25912</guid>
      <dc:creator>5axes</dc:creator>
      <dc:date>2017-09-11T17:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7372598#M25913</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="custom.png" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/400346i63AD7367D44E3FBD/image-size/large?v=v2&amp;amp;px=999" role="button" title="custom.png" alt="custom.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That's my current custom setup but I keep adding as I go along.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2017 08:41:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7372598#M25913</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-09-12T08:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7374110#M25914</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3969139"&gt;@5axes&lt;/a&gt;&lt;/P&gt;&lt;P&gt;Can you explain how you got the information to display in the QAT?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2017 17:23:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7374110#M25914</guid>
      <dc:creator>rmiller</dc:creator>
      <dc:date>2017-09-12T17:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7374205#M25915</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4173764"&gt;@rmiller&lt;/a&gt;&amp;nbsp;You just select 'expression field' from the pull-down menu and add whatever expression you would like to show&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/400591iB69545EFF38AD74D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2017 17:52:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7374205#M25915</guid>
      <dc:creator>iamcdn79</dc:creator>
      <dc:date>2017-09-12T17:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7374211#M25916</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;rmiller a écrit&amp;nbsp;:&lt;BR /&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3969139" target="_blank"&gt;@5axes&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Can you explain how you got the information to display in the QAT?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You can use the general variables to get the current information ie :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One Field give me the Current feedrate value in the active Toolpath -&amp;gt; Expression : &lt;STRONG&gt;'F ' + &lt;FONT color="#ff0000"&gt;$Toolpath&lt;/FONT&gt;.feedrate.cutting.value &lt;/STRONG&gt;This general variable are automaticaly updated by the software. It&amp;nbsp;works for informations on active $Toolpath , $Tool, $Boundary, $Workplane&amp;nbsp;etc etc ..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QAT.jpg" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/400579i6A53AEF387ACBB4E/image-size/large?v=v2&amp;amp;px=999" role="button" title="QAT.jpg" alt="QAT.jpg" /&gt;&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Some values are not available directly, so I'm using a macro to declare some &lt;STRONG&gt;session&lt;/STRONG&gt; variables&amp;nbsp; Ie : One field give me the total time of every toolpath in the active folder : &lt;STRONG&gt;$Session&lt;/STRONG&gt;.TotalTime&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;// Total times Calculation + Store in a $Session Variable :TotalTime
// Store in a $Session Variable :Folder
REAL $total_time = 0

// Session Variable to store the result
If NOT member($session._keys, "TotalTime") {
		      SESSIONPAR REAL TotalTime = 0
		   }
If NOT member($session._keys, "CFolder") {
		      SESSIONPAR STRING CFolder = "Toolpath"
		   }

// Active Folder
//get the active folder (if there is one)
STRING $a_f = active_folder()

//abort if there is no active folder
IF $a_f == '' {
  $a_f = "Toolpath"
}

//abort if the active folder is not in the toolpath mode
STRING LIST $Split = {}
$Split = TOKENS($a_f, "\")

IF $Split[0] != "Toolpath" {
  $a_f = "Toolpath"
}
		   
FOREACH tpath IN folder($a_f) {
	$total_time = total_time + $tpath.statistics.leadsandlinks.times.rapid
	$total_time = total_time + $tpath.statistics.leadsandlinks.times.plunge
	$total_time = total_time + $tpath.statistics.leadsandlinks.times.ramp
	$total_time = total_time + $tpath.statistics.leadsandlinks.times.others
	$total_time = total_time + $tpath.statistics.cuttingmoves.times.linear
	$total_time = total_time + $tpath.statistics.cuttingmoves.times.arcs
}

$session.CFolder = $a_f
$session.TotalTime = round($total_time,2)
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I need to update these informations I just click on the icon in the QAT closed to this field or using a shortcut F9&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QAT2.jpg" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/400589i39C114F53830716F/image-size/large?v=v2&amp;amp;px=999" role="button" title="QAT2.jpg" alt="QAT2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2017 17:55:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7374211#M25916</guid>
      <dc:creator>5axes</dc:creator>
      <dc:date>2017-09-12T17:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7374278#M25917</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3960527"&gt;@iamcdn79&lt;/a&gt;iamc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I want to do is add information to the QAT like we can using the user defined fields in the status bar. &amp;nbsp;I'd like the Description to show next to the Expression. &amp;nbsp;For example RPM 3000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2017 18:12:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7374278#M25917</guid>
      <dc:creator>rmiller</dc:creator>
      <dc:date>2017-09-12T18:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7374295#M25918</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3969139"&gt;@5axes&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks that is what I was looking for.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2017 18:16:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7374295#M25918</guid>
      <dc:creator>rmiller</dc:creator>
      <dc:date>2017-09-12T18:16:53Z</dc:date>
    </item>
    <item>
      <title>Betreff: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7376272#M25919</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;My 2 Cents&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Stats.JPG" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/400781iBA51190C9B11FDC9/image-size/large?v=v2&amp;amp;px=999" role="button" title="Stats.JPG" alt="Stats.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;N-Code&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2017 07:44:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7376272#M25919</guid>
      <dc:creator>N-Code</dc:creator>
      <dc:date>2017-09-13T07:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7376325#M25920</link>
      <description>&lt;P&gt;If we refer to the old post concerning the customized setup&amp;nbsp;&lt;A href="https://manufacturing.autodesk.com/forums/forum.delcam.com/viewtopicd83d.html" target="_blank"&gt;https://manufacturing.autodesk.com/forums/forum.delcam.com/viewtopicd83d.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Not so many people where using a lot of uge customized toolbar. So It should be not a big problem for them to migrate to the Ribbon style interface.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Different solution were used with HTML page , or plugins or as me a lot of user menu.&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3959841"&gt;@kukelyk&lt;/a&gt;&amp;nbsp;is using a lot of button , but I think is still on 2016. I don't know if someone like @Ondrej have migrate to this new forum and to the 2018 release but he was also suing a lot of customized toolbar.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2017 08:07:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7376325#M25920</guid>
      <dc:creator>5axes</dc:creator>
      <dc:date>2017-09-13T08:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7377705#M25921</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3969139"&gt;@5axes&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you happen to figure out how to increase/decrease the size of the expression boxes in the QAT?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2017 14:55:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7377705#M25921</guid>
      <dc:creator>Scoobyvroom</dc:creator>
      <dc:date>2017-09-13T14:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7377717#M25922</link>
      <description>Not to be rude, but can we keep the topics on here to my main question, and perhaps start a new thread or pm individuals with non-topic questions? Thanks!!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Sep 2017 14:57:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7377717#M25922</guid>
      <dc:creator>TK.421</dc:creator>
      <dc:date>2017-09-13T14:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7383389#M25923</link>
      <description>&lt;P&gt;To go back to the topic of &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3976796"&gt;@TK.421&lt;/a&gt;, here is an example of an "interface" customization on which I have been working for a few months. A dual monitor configuration is required to operate properly. That's also certainly an explanation why I don't use so many icon button in Pmill&amp;nbsp;&lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://forums.autodesk.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="NCProcess.jpg" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/401923iC57673600B03AC5A/image-size/large?v=v2&amp;amp;px=999" role="button" title="NCProcess.jpg" alt="NCProcess.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;The left development is a generator of NC Process that allows to "automatically" program some parts (limited to simple cases in 3 axes)&lt;BR /&gt;The working process is as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;FONT color="#0000FF"&gt;Load the part in Pmill &lt;FONT color="#000000"&gt;( but you could also start directly from the interface and create the Pmill project directy from the software)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT color="#0000FF"&gt;Automatique analysis of the part in Pmill (Dimension of the block, depth maxi, mini radius ...)&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;Transfer of these datas into the software&lt;/LI&gt;
&lt;LI&gt;Automatic or &lt;STRONG&gt;manual definition&lt;/STRONG&gt; of the NC process according to the tool library ,the chosen machine and the cutting material&lt;/LI&gt;
&lt;LI&gt;&lt;FONT color="#0000FF"&gt;Transfer of the created Nc process / Tool creation and calculation of the paths / boundary / remaining material &amp;nbsp;in Pmill.&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT color="#0000FF"&gt;Check and modifications by operator of the toolpath , modifications of the cutting parameters according to the particular conditions&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;Reload in the software of the toolpath parameters for difference analysis (&lt;FONT color="#00FF00"&gt;&lt;STRONG&gt;In green parameter unchanged&lt;/STRONG&gt; &lt;/FONT&gt;in &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Red those different from the original settings&lt;/FONT&gt;&lt;/STRONG&gt;)&lt;/LI&gt;
&lt;LI&gt;Upon decision of the user, update the tool database to integrate the right conditions and capitalize the data.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And we start again&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2017 13:36:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7383389#M25923</guid>
      <dc:creator>5axes</dc:creator>
      <dc:date>2017-09-15T13:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7430783#M25924</link>
      <description>&lt;P&gt;I realize this is a older post but I figured I can contribute.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's how I have my Ribbon customized&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="custom ribbon.PNG" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/408586iCFB4C1D7BD255737/image-size/large?v=v2&amp;amp;px=999" role="button" title="custom ribbon.PNG" alt="custom ribbon.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;We have a few different machines that all require different parameters and therefore, different macros. The green check mark that's highlighted yellow in the QAT is my startup macro which loads up my custom ribbon and keyboard shortcuts based on what machine/operation I'm doing.&lt;/P&gt;&lt;P&gt;Our programming is very fast paced so there's quite a bit that I have assigned to custom keyboard shortcuts as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This setup works for me but honestly, I do miss the old toolbar system. Less clicks.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2017 09:03:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7430783#M25924</guid>
      <dc:creator>danmic7JH66</dc:creator>
      <dc:date>2017-10-04T09:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7761810#M25925</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="UI.PNG" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/460591iD342340883DBE4C3/image-size/large?v=v2&amp;amp;px=999" role="button" title="UI.PNG" alt="UI.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Custom Toolpath Icon loss.PNG" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/460599i55B204BA36831D19/image-size/large?v=v2&amp;amp;px=999" role="button" title="Custom Toolpath Icon loss.PNG" alt="Custom Toolpath Icon loss.PNG" /&gt;&lt;/span&gt;I've managed to&amp;nbsp;bring over and &amp;nbsp;update almost all of our toolbars with a few exceptions.&amp;nbsp; One issue I am having is that the quick select preview of favorite toolpaths arent showing the icons for some of my custom templates.&amp;nbsp; Ive scoured the earth for information on how to do this and to no avail.&amp;nbsp; Anyone have any idea how to do this? Some of my custom ones work and others don't.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 11:43:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7761810#M25925</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-08T11:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7761850#M25926</link>
      <description>&lt;P&gt;Are you sure you have the .ico&amp;nbsp;file in that same directory&amp;nbsp;as your template file and both names match?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 12:03:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7761850#M25926</guid>
      <dc:creator>iamcdn79</dc:creator>
      <dc:date>2018-02-08T12:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7762088#M25927</link>
      <description>&lt;P&gt;I experienced the same trouble and that was actually the answer : The pathes did not match.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Olivier&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 13:20:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7762088#M25927</guid>
      <dc:creator>NanchenO</dc:creator>
      <dc:date>2018-02-08T13:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: 2018 custom setup</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7762277#M25928</link>
      <description>&lt;P&gt;Yes the paths were correct and correctly labeled. I found root cause to be the .ico files I was using were old PM2017 files and the new PM did not recognize them.&amp;nbsp; I substituted for new 2018 .ico files and they still didn't update correctly.&amp;nbsp; I un-favorited them and re-favorited them after the change and lo and behold the icons appeared.&amp;nbsp; So update to current verison .ico files and re-favorite them and it will work.&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Custom Toolpath Icon gain.PNG" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/460659iABA89BF092EBCC1F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Custom Toolpath Icon gain.PNG" alt="Custom Toolpath Icon gain.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 14:05:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/2018-custom-setup/m-p/7762277#M25928</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-08T14:05:30Z</dc:date>
    </item>
  </channel>
</rss>

