<?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 Betreff: Pattern Finishing in PowerMill Forum</title>
    <link>https://forums.autodesk.com/t5/powermill-forum/pattern-finishing/m-p/14116131#M33421</link>
    <description>&lt;P&gt;yeah i figured it out like 5 min after posting lol&amp;nbsp;&lt;BR /&gt;Thank you !&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 04 May 2026 15:42:35 GMT</pubDate>
    <dc:creator>jsweatherbie</dc:creator>
    <dc:date>2026-05-04T15:42:35Z</dc:date>
    <item>
      <title>Pattern Finishing</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/pattern-finishing/m-p/14116105#M33419</link>
      <description>&lt;P&gt;Im making a engraving macro and i cant seem to get the pattern to apply into the drive curve selection box. just remains empty.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ive tired to look at other posts. like one suggested to use this.&lt;/P&gt;&lt;LI-CODE lang="general"&gt;$toolpath.Pattern = $patternName&lt;/LI-CODE&gt;&lt;P&gt;didnt make a selection just left it also blank....&lt;BR /&gt;&lt;BR /&gt;heres my full macro.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;DIALOGS MESSAGE OFF
DIALOGS ERROR OFF

//THIS IS COPYED FROM YOUR FORUM POST
//READ ABOVE JAMES

RESET LOCALVARS

//USER CHOOSES TOOL
STRING userTool = INPUT ENTITY Tool "Choose a Tool for Engraving"
FORM RIBBON BACKSTAGE CLOSE IMPORT TEMPLATE PROJECT FILEOPEN "M:\PowerMill\MACROS\TEMPLATES\ENGRAVING.ptf"
ACTIVATE TOOLPATH #
ACTIVATE TOOL $userTool

STRING $patternName = '$tool.name'+''+'ENGRAVING'
if entity_exists('pattern',$patternName) {
 $patternName = new_entity_name('pattern',$patternName)
}
//TOOLPATH BLOCK
EDIT BLOCK ALL UNLOCK
EDIT BLOCK RESETLIMIT "0.1"
EDIT BLOCKTYPE BOX
EDIT BLOCK COORDINATE WORKPLANE
EDIT BLOCK RESET
$toolpath.Pattern = $patternName
EDIT PAR 'UpperLimit.Active' 1

//INSERTS USER SELECTION
EDIT PATTERN $patternName INSERT MODEL
EDIT PATTERN $patternName MERGE
EDIT PATTERN $patternName FLATTEN

RENAME TOOLPATH # "ENGRAVING"

EDIT TOOLPATH ; CALCULATE

DIALOGS MESSAGE ON
DIALOGS ERROR ON &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 15:22:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/pattern-finishing/m-p/14116105#M33419</guid>
      <dc:creator>jsweatherbie</dc:creator>
      <dc:date>2026-05-04T15:22:42Z</dc:date>
    </item>
    <item>
      <title>Betreff: Pattern Finishing</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/pattern-finishing/m-p/14116123#M33420</link>
      <description>&lt;P&gt;this should work&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;EDIT PAR 'Pattern' "$patternName"&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 04 May 2026 15:37:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/pattern-finishing/m-p/14116123#M33420</guid>
      <dc:creator>gosmann.andreas</dc:creator>
      <dc:date>2026-05-04T15:37:36Z</dc:date>
    </item>
    <item>
      <title>Betreff: Pattern Finishing</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/pattern-finishing/m-p/14116131#M33421</link>
      <description>&lt;P&gt;yeah i figured it out like 5 min after posting lol&amp;nbsp;&lt;BR /&gt;Thank you !&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 15:42:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/pattern-finishing/m-p/14116131#M33421</guid>
      <dc:creator>jsweatherbie</dc:creator>
      <dc:date>2026-05-04T15:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: Pattern Finishing</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/pattern-finishing/m-p/14116142#M33422</link>
      <description>&lt;P&gt;i think the problem is your pattern may not be active, try this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;DIALOGS MESSAGE OFF
DIALOGS ERROR OFF

//THIS IS COPYED FROM YOUR FORUM POST
//READ ABOVE JAMES

RESET LOCALVARS

//USER CHOOSES TOOL
STRING userTool = INPUT ENTITY Tool "Choose a Tool for Engraving"
FORM RIBBON BACKSTAGE CLOSE IMPORT TEMPLATE PROJECT FILEOPEN "M:\PowerMill\MACROS\TEMPLATES\ENGRAVING.ptf"
ACTIVATE TOOLPATH #
ACTIVATE TOOL $userTool

STRING $patternName = '$tool.name'+''+'ENGRAVING'
if entity_exists('pattern',$patternName) {
 $patternName = new_entity_name('pattern',$patternName)
}

// Create unique pattern name
STRING $patternName = $tool.name + "ENGRAVING"

IF entity_exists('pattern',$patternName) {
    $patternName = new_entity_name('pattern',$patternName)
}

// Ensure pattern exists + is active
IF entity_exists('pattern',$patternName) {
    ACTIVATE PATTERN $patternName
} ELSE {
    CREATE PATTERN $patternName
    ACTIVATE PATTERN $patternName
}

//INSERTS USER SELECTION
EDIT PATTERN $patternName INSERT MODEL
EDIT PATTERN $patternName MERGE
EDIT PATTERN $patternName FLATTEN

// Noe assign it to toolpath
$toolpath.Pattern = $patternName

//TOOLPATH BLOCK
EDIT BLOCK ALL UNLOCK
EDIT BLOCK RESETLIMIT "0.1"
EDIT BLOCKTYPE BOX
EDIT BLOCK COORDINATE WORKPLANE
EDIT BLOCK RESET

EDIT PAR 'UpperLimit.Active' 1

RENAME TOOLPATH # "ENGRAVING"

EDIT TOOLPATH ; CALCULATE

DIALOGS MESSAGE ON
DIALOGS ERROR ON &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 15:46:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/pattern-finishing/m-p/14116142#M33422</guid>
      <dc:creator>iamcdn79</dc:creator>
      <dc:date>2026-05-04T15:46:51Z</dc:date>
    </item>
  </channel>
</rss>

