<?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: Tool Reference in PowerMill Forum</title>
    <link>https://forums.autodesk.com/t5/powermill-forum/tool-reference/m-p/8821604#M15323</link>
    <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can open the tool settings and go to the holder profile tab. This will display all the toolpaths this tool has been assigned too.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 16:11:04 GMT</pubDate>
    <dc:creator>Jonathan_Artiss19</dc:creator>
    <dc:date>2019-05-29T16:11:04Z</dc:date>
    <item>
      <title>Tool Reference</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/tool-reference/m-p/8821567#M15322</link>
      <description>&lt;P&gt;Is there a way to find out what toolpaths a tool is used in? ( Other than attempting to delete the tool )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The project needs to be moved to a smaller tool capacity machine than it was programmed for, so I need to break the tools up into logical groups.&amp;nbsp; There are nearly 400 toolpaths in this project and will take a lot of time to go through individually.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 15:54:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/tool-reference/m-p/8821567#M15322</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-29T15:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Tool Reference</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/tool-reference/m-p/8821604#M15323</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can open the tool settings and go to the holder profile tab. This will display all the toolpaths this tool has been assigned too.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 16:11:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/tool-reference/m-p/8821604#M15323</guid>
      <dc:creator>Jonathan_Artiss19</dc:creator>
      <dc:date>2019-05-29T16:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: Tool Reference</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/tool-reference/m-p/8821639#M15324</link>
      <description>&lt;P&gt;That's exactly what I was after, thanks Jonathan.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 16:23:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/tool-reference/m-p/8821639#M15324</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-29T16:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Tool Reference</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/tool-reference/m-p/8830375#M15325</link>
      <description>&lt;P&gt;Another good way to get tool data, or other toolpath data quickly, is to view the toolpaths in the NC Program dialog.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2019 23:12:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/tool-reference/m-p/8830375#M15325</guid>
      <dc:creator>Oscar_cadcampilot</dc:creator>
      <dc:date>2019-06-03T23:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Tool Reference</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/tool-reference/m-p/9711040#M15326</link>
      <description>&lt;P&gt;I'm late but for this type of job I was using a macro : (note Tool Can be assigned to toolpaths but also to boundaries)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;//---------------------------------------------------------------------------------------------------
// Permet d'afficher tous les éléments (parcours et frontière) utilisant l'outil sélectionné
//---------------------------------------------------------------------------------------------------
// Macro à lancer depuis un menu utilisateur tool.
// Exemple fichier tool.xml à mettre dans le répertoire macro
// Rappel pas d'accent sur les commandes du XML
//---------------------------------------------------------------------------------------------------
//&amp;lt;?xml version="1.0" ?&amp;gt;
//&amp;lt;menupage&amp;gt;
//   &amp;lt;button command='MACRO "Affiche_elements_avec_outil" "%s"' label="Affiche elements avec cet outil" /&amp;gt;
//&amp;lt;/menupage&amp;gt;
//---------------------------------------------------------------------------------------------------
// Variable $Selected_Tool
//---------------------------------------------------------------------------------------------------

FUNCTION Main(STRING $Selected_Tool) {
  /// commence par ne plus afficher aucun parcours outil
  UNDRAW toolpath ALL
  
  // Construire la fonction
  STRING $expr = "tool.name=='" + $entity('tool',$Selected_Tool).name + "'"
  
  INT Nb_Elem=0
  // pour chaque parcours regarde si le parcours
  FOREACH $tp IN extract(filter(folder('toolpath'), $expr), 'name') {
    DRAW TOOLPATH ${entity('toolpath', $tp).name}
    $Nb_Elem=$Nb_Elem+1
  }

  /// commence par ne plus afficher aucune frontière
 UNDRAW BOUNDARY ALL 
 BOOL $Err = 0
 
   // pour chaque frontière regarde si il y a un outil et si oui si c'est le même nom
  FOREACH $Elem IN folder('boundary') {
    $Err = ERROR $entity('Tool',$Elem.Tool.Name)
	IF NOT $Err {
		IF $Elem.Tool.Name == $Selected_Tool {
		    DRAW BOUNDARY $Elem.Name
		    $Nb_Elem=$Nb_Elem+1
		}
	}
  }
  
  IF $Nb_Elem !=0 {
  MESSAGE INFO "Elements trouvé(s) $Nb_Elem"
  } ELSE {
  MESSAGE WARN "Aucun elements trouvé"
  }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2020 16:14:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/tool-reference/m-p/9711040#M15326</guid>
      <dc:creator>5axes</dc:creator>
      <dc:date>2020-08-25T16:14:45Z</dc:date>
    </item>
  </channel>
</rss>

