<?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: How can i use the macro to get the PowerMILL is Standard or Ultimate version? in PowerMill Forum</title>
    <link>https://forums.autodesk.com/t5/powermill-forum/how-can-i-use-the-macro-to-get-the-powermill-is-standard-or/m-p/11480168#M5307</link>
    <description>&lt;P&gt;This should do it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;//Get info from About widget
STRING $info = $widget("about.label").value
// Split it
STRING LIST $split = tokens($info)
// Get Version, should be one of Viewer, Ultimate, Premium and Standard
//currently the viewer doesn't return information into the $info variable
// Error check for trying to split an emply list
BOOL $err = 0 
$err = ERROR split[2]
STRING $version = ""
IF $err == 0 {
	$version = split[2]
	}
MESSAGE INFO $version	&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Oct 2022 13:47:30 GMT</pubDate>
    <dc:creator>cfastNJWK6</dc:creator>
    <dc:date>2022-10-13T13:47:30Z</dc:date>
    <item>
      <title>How can i use the macro to get the PowerMILL is Standard or Ultimate version?</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/how-can-i-use-the-macro-to-get-the-powermill-is-standard-or/m-p/11479020#M5304</link>
      <description>&lt;P&gt;As the image show below.&lt;/P&gt;&lt;P&gt;How can i use the macro to get the PowerMILL is Standard or Ultimate version?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="03.png" style="width: 589px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1126684i4A4B21EB1DACD022/image-size/large?v=v2&amp;amp;px=999" role="button" title="03.png" alt="03.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 02:04:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/how-can-i-use-the-macro-to-get-the-powermill-is-standard-or/m-p/11479020#M5304</guid>
      <dc:creator>hx</dc:creator>
      <dc:date>2022-10-13T02:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: How can i use the macro to get the PowerMILL is Standard or Ultimate version?</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/how-can-i-use-the-macro-to-get-the-powermill-is-standard-or/m-p/11479107#M5305</link>
      <description>&lt;P&gt;Not sure if there is a way to do this with macros however I used to do this by changing the target of the powermill shortcut. If you right click on the shortcut and then select properties, from there go to the shortcut tab. In the target box if you scroll right to the end the last word is "ultimate", if you swap this out with the word "standard", press ok, then launch powermill from the shortcut it will load into standard mode.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This might work however you may run into license issues when it loads, i'm not certain, haven't done this in a while.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 03:21:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/how-can-i-use-the-macro-to-get-the-powermill-is-standard-or/m-p/11479107#M5305</guid>
      <dc:creator>DanielMolloy</dc:creator>
      <dc:date>2022-10-13T03:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: How can i use the macro to get the PowerMILL is Standard or Ultimate version?</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/how-can-i-use-the-macro-to-get-the-powermill-is-standard-or/m-p/11479128#M5306</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9254801"&gt;@DanielMolloy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the answer.&lt;/P&gt;&lt;P&gt;I Know this method to run the standard or ultimate version. But I need is the macro to know with version is running now. because some function was limit in PowerMILL standard. The macro needs to warn the user that the correct version needs to be used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 03:48:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/how-can-i-use-the-macro-to-get-the-powermill-is-standard-or/m-p/11479128#M5306</guid>
      <dc:creator>hx</dc:creator>
      <dc:date>2022-10-13T03:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: How can i use the macro to get the PowerMILL is Standard or Ultimate version?</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/how-can-i-use-the-macro-to-get-the-powermill-is-standard-or/m-p/11480168#M5307</link>
      <description>&lt;P&gt;This should do it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;//Get info from About widget
STRING $info = $widget("about.label").value
// Split it
STRING LIST $split = tokens($info)
// Get Version, should be one of Viewer, Ultimate, Premium and Standard
//currently the viewer doesn't return information into the $info variable
// Error check for trying to split an emply list
BOOL $err = 0 
$err = ERROR split[2]
STRING $version = ""
IF $err == 0 {
	$version = split[2]
	}
MESSAGE INFO $version	&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 13:47:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/how-can-i-use-the-macro-to-get-the-powermill-is-standard-or/m-p/11480168#M5307</guid>
      <dc:creator>cfastNJWK6</dc:creator>
      <dc:date>2022-10-13T13:47:30Z</dc:date>
    </item>
  </channel>
</rss>

