<?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: Macro for saving boundary to temp folder in PowerMill Forum</title>
    <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8166614#M20216</link>
    <description>&lt;P&gt;Oh, okay, I had a feeling it might be due to my version of PowerMill 2010. Thank you again so much for your help. I deeply appreciate it.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 31 Jul 2018 04:37:57 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-07-31T04:37:57Z</dc:date>
    <item>
      <title>Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8159366#M20208</link>
      <description>Hi guys,&lt;BR /&gt;I would really appreciate if you could help with me the following macro question:&lt;BR /&gt;How can i save whats in boundary folder such as supportpins type *pic into an external temp folder with the same type *pic</description>
      <pubDate>Fri, 27 Jul 2018 04:07:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8159366#M20208</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-27T04:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8159956#M20209</link>
      <description>&lt;PRE&gt;STRING $TEMP_FOLDER = "C:\Temp" //Change this
FOREACH $Boun IN FOLDER('BOUNDARY') {
	STRING $FILE_SAVE = $TEMP_FOLDER + "\" + $Boun.Name + ".pic"
	KEEP BOUNDARY $Boun.Name $FILE_SAVE YES
}&lt;/PRE&gt;</description>
      <pubDate>Fri, 27 Jul 2018 10:39:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8159956#M20209</guid>
      <dc:creator>rafael.sansao</dc:creator>
      <dc:date>2018-07-27T10:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8160018#M20210</link>
      <description>&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class=""&gt;With some additional checks ...&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;STRING $TEMP_FOLDER = "C:\Temp" //Change this
FOREACH $Boun IN FOLDER('BOUNDARY') {
	IF $Boun.Computed == true AND segments($Boun) &amp;gt; 0 {
		STRING $FILE_SAVE = $TEMP_FOLDER + "\" + $Boun.Name + ".pic"
		KEEP BOUNDARY $Boun.Name $FILE_SAVE YES
	}
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 11:13:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8160018#M20210</guid>
      <dc:creator>rafael.sansao</dc:creator>
      <dc:date>2018-07-27T11:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8163997#M20211</link>
      <description>&lt;P&gt;Thank you Rafael. I deeply appreciate it, but when I run the macro Powermill gives me an error saying, "Unsupported Powermill command and Feature: STRING&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4163177"&gt;@rafael.sansao&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;PRE&gt;STRING $TEMP_FOLDER = "C:\Temp" //Change this
FOREACH $Boun IN FOLDER('BOUNDARY') {
	STRING $FILE_SAVE = $TEMP_FOLDER + "\" + $Boun.Name + ".pic"
	KEEP BOUNDARY $Boun.Name $FILE_SAVE YES
}&lt;/PRE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;BR /&gt;$TEMP_FOLDER = "C:\Temp"&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jul 2018 06:19:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8163997#M20211</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-30T06:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8164437#M20212</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Save the attached macro and run it.&lt;/SPAN&gt; If the Powermill returns an error, take a print and send it here.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jul 2018 10:52:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8164437#M20212</guid>
      <dc:creator>rafael.sansao</dc:creator>
      <dc:date>2018-07-30T10:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8164601#M20213</link>
      <description>&lt;P&gt;I am currently using PowerMill 2010 and this is the error I'm getting below:&amp;nbsp;&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="macError.JPG" style="width: 439px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/528819iFCE1132D4D270BFE/image-size/large?v=v2&amp;amp;px=999" role="button" title="macError.JPG" alt="macError.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jul 2018 12:14:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8164601#M20213</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-30T12:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8164618#M20214</link>
      <description>&lt;P&gt;This is the error given by PowerMill.&amp;nbsp;&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.JPG" style="width: 402px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/528823iA0D22F5149282B23/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jul 2018 12:19:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8164618#M20214</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-30T12:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8164748#M20215</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Most macro commands do not work in version 10.&lt;/SPAN&gt;&lt;BR /&gt;If you want to take advantage of the macros, you'll need to migrate to a newer Powermill version (2016 or later)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jul 2018 13:08:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8164748#M20215</guid>
      <dc:creator>rafael.sansao</dc:creator>
      <dc:date>2018-07-30T13:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8166614#M20216</link>
      <description>&lt;P&gt;Oh, okay, I had a feeling it might be due to my version of PowerMill 2010. Thank you again so much for your help. I deeply appreciate it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jul 2018 04:37:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8166614#M20216</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-31T04:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8169871#M20217</link>
      <description>&lt;P&gt;@Anonymous&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you tried removing the "$" from the line:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;STRING $TEMP_FOLDER = "C:\temp"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Generally, when you first&amp;nbsp;declare (create) a STRING VARIABLE....you don't need the $ in front of the name of the variable.&lt;/P&gt;&lt;P&gt;In this case, the variable is called: TEMP_FOLDER&lt;/P&gt;&lt;P&gt;However, anytime after this initial variable declaration, when you need to use or modify the variable's content...you must have the "$" in front of it's name.&lt;/P&gt;&lt;P&gt;Anyway, worth a try...but as&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4163177"&gt;@rafael.sansao&lt;/a&gt;&amp;nbsp;mentioned...perhaps it's just not possible in Pmill 2010&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good luck,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Glen&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 10:28:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8169871#M20217</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-01T10:28:11Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8169948#M20218</link>
      <description>&lt;P&gt;Try removing the trailing //comment&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 10:49:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8169948#M20218</guid>
      <dc:creator>lloyd.patton</dc:creator>
      <dc:date>2018-08-01T10:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8169971#M20219</link>
      <description>&lt;P&gt;Yes I tried it without the $ and it gave me the same error.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 10:59:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8169971#M20219</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-01T10:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8169997#M20220</link>
      <description>&lt;P&gt;Also I removed the //comment and it still gave me the same error. However, this code below works for Supportpin_0_1 boundary but then gives me the same error. I need it to run for all the supportpin boundaries.&amp;nbsp; How can I run the macro once so it goes thru each of the boundaries and saves it in the temp folder?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EXPLORER SELECT Boundary 'SUPPORTPIN_0_1' NEW&lt;/P&gt;&lt;P&gt;KEEP BOUNDARY 'SUPPORTPIN_0_1' FILESAVE&lt;/P&gt;&lt;P&gt;c:\TEMP\SUPPORTPIN_0_1.PIC&lt;/P&gt;&lt;P&gt;EXPLORER SELECT Boundary 'SUPPORTPIN_0_1' NEW&lt;/P&gt;&lt;P&gt;KEEP BOUNDARY 'SUPPORTPIN_0_1' FILESAVE&lt;/P&gt;&lt;P&gt;c:\TEMP\SUPPORTPIN_0_1.PIC&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EXPLORER SELECT Boundary 'SUPPORTPIN_0_2' NEW&lt;/P&gt;&lt;P&gt;KEEP BOUNDARY 'SUPPORTPIN_0_2' FILESAVE&lt;/P&gt;&lt;P&gt;c:\TEMP\SUPPORTPIN_0_2.PIC&lt;/P&gt;&lt;P&gt;EXPLORER SELECT Boundary 'SUPPORTPIN_0_2' NEW&lt;/P&gt;&lt;P&gt;KEEP BOUNDARY 'SUPPORTPIN_0_2' FILESAVE&lt;/P&gt;&lt;P&gt;c:\TEMP\SUPPORTPIN_0_2.PIC&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EXPLORER SELECT Boundary 'SUPPORTPIN_0_3' NEW&lt;/P&gt;&lt;P&gt;KEEP BOUNDARY 'SUPPORTPIN_0_3' FILESAVE&lt;/P&gt;&lt;P&gt;c:\TEMP\SUPPORTPIN_0_3.PIC&lt;/P&gt;&lt;P&gt;EXPLORER SELECT Boundary 'SUPPORTPIN_0_3' NEW&lt;/P&gt;&lt;P&gt;KEEP BOUNDARY 'SUPPORTPIN_0_3' FILESAVE&lt;/P&gt;&lt;P&gt;c:\TEMP\SUPPORTPIN_0_3.PIC&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 11:08:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8169997#M20220</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-01T11:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8170003#M20221</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;That's not possible.&lt;/SPAN&gt; The logic programming language was inserted into the Powermill in the 2012 R2 version.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 11:11:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8170003#M20221</guid>
      <dc:creator>rafael.sansao</dc:creator>
      <dc:date>2018-08-01T11:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8170029#M20222</link>
      <description>&lt;P&gt;Referring to Powermill 2010 question: I guess I have to sign up with Scribd to access the entire guideline.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 11:21:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8170029#M20222</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-01T11:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8170034#M20223</link>
      <description>&lt;P&gt;I know there is a way of saving the boundaries in PowerMill 2010 because there are other macros that I run that function perfectly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 11:25:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8170034#M20223</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-01T11:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8197736#M20224</link>
      <description>&lt;P&gt;I know this code below works for saving supportpin into the temp folder, but for some reason it doesn't overwrite the old supportpin.pic files. How can I delete the old SUPPORTPIN.PIC files, so the new &lt;SPAN&gt;SUPPORTPIN.PIC&lt;/SPAN&gt; files saves into the temp folder.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EXPLORER SELECT Boundary "Boundary\SUPPORTPIN_0_1" NEW&lt;/P&gt;&lt;P&gt;ACTIVATE Boundary "SUPPORTPIN_0_1"&lt;BR /&gt;EXPLORER SELECT Boundary "Boundary\SUPPORTPIN_0_1" NEW&lt;/P&gt;&lt;P&gt;KEEP Boundary "SUPPORTPIN_0_1" FILESAVE&lt;/P&gt;&lt;P&gt;"C:\temp\SUPPORTPIN_0_1.PIC"&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EXPLORER SELECT Boundary "Boundary\SUPPORTPIN_0_2" NEW&lt;/P&gt;&lt;P&gt;ACTIVATE Boundary "SUPPORTPIN_0_2"&lt;BR /&gt;EXPLORER SELECT Boundary "Boundary\SUPPORTPIN_0_2" NEW&lt;/P&gt;&lt;P&gt;KEEP Boundary "SUPPORTPIN_0_2" FILESAVE&lt;/P&gt;&lt;P&gt;"C:\temp\SUPPORTPIN_0_2.PIC"&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //and so on for the rest of supportpin 3, 4, 5 ,6...&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 09:22:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8197736#M20224</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-14T09:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8197754#M20225</link>
      <description>&lt;P&gt;You don't need the EXPLORER SELECT commands, you don't need the FILESAVE, and you don't need to activate the boundary each time. You specify YES to the potential OVERWRITE query.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;KEEP Boundary "SUPPORTPIN_0_1" "C:\temp\SUPPORTPIN_0_1.PIC" YES
KEEP Boundary "SUPPORTPIN_0_2" "C:\temp\SUPPORTPIN_0_2.PIC"  YES&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;You can delete files and directories with&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;DELETE FILE &amp;lt;filepath&amp;gt;
DELETE DIRECTORY &amp;lt;dirpath&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 09:32:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8197754#M20225</guid>
      <dc:creator>urizenYHS3W</dc:creator>
      <dc:date>2018-08-14T09:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8197906#M20226</link>
      <description>&lt;P&gt;Thank you so much. It worked.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 10:42:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8197906#M20226</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-14T10:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for saving boundary to temp folder</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8218543#M20227</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;I wanted to know is there a way I can delete curves within a boundary and then save that boundary to an external temp folder using PowerMill?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 06:59:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/macro-for-saving-boundary-to-temp-folder/m-p/8218543#M20227</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-23T06:59:19Z</dc:date>
    </item>
  </channel>
</rss>

