<?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: Check Verification Progress in PowerMill Forum</title>
    <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7838765#M22552</link>
    <description>&lt;P&gt;i just remembered, that for posting individually i reference another macro because I am too lazy to type it out. here it is&lt;/P&gt;</description>
    <pubDate>Thu, 08 Mar 2018 17:27:37 GMT</pubDate>
    <dc:creator>TK.421</dc:creator>
    <dc:date>2018-03-08T17:27:37Z</dc:date>
    <item>
      <title>Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7836331#M22542</link>
      <description>&lt;P&gt;if i am verifying a bunch of toolpaths, is there a means I can have it display in an info box which toolpath is being verified? powermill just sits there for 20 minutes and I have no idea if it is in the middle or near the end.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Second question: I make "holder safe" toolpaths when I calculate them. is there any need to check the tick boxes for 'Verify the tool against the model' in the verification form? Maybe I am doing double work and wasting time?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 07 Mar 2018 22:04:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7836331#M22542</guid>
      <dc:creator>TK.421</dc:creator>
      <dc:date>2018-03-07T22:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7836390#M22543</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Can help in the implementation of INFOBOX&lt;/SPAN&gt;&lt;/SPAN&gt;:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/powermill-forum/show-message-while-running-macro/m-p/6631627/highlight/true#M1050" target="_blank"&gt;https://forums.autodesk.com/t5/powermill-forum/show-message-while-running-macro/m-p/6631627/highlight/true#M1050&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://manufacturing.autodesk.com/forums/forum.delcam.com/viewtopic3f10.html?p=52065" target="_blank"&gt;https://manufacturing.autodesk.com/forums/forum.delcam.com/viewtopic3f10.html?p=52065&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Mar 2018 22:30:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7836390#M22543</guid>
      <dc:creator>rafael.sansao</dc:creator>
      <dc:date>2018-03-07T22:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7836591#M22544</link>
      <description>&lt;P&gt;thanks boss!&amp;nbsp; i think I have something here but I'm not sure about it. so i select a number of toolpaths to add to an nc program, and then add them one at a time and verify, then toolpath goes into info box so i know it is done. when I add a second toolpath ( and third and fourth, etc...) do the connecting moves between that and the first get checked? The previous toolpath has already been verified - does it do it again?&amp;nbsp; here's my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;EDIT NCPROGRAM PREFERENCES MODELLOCATION "G54"
EDIT NCPROGRAM PREFERENCES WORKPLANE "G54"

//select toolpaths for posting
STRING LIST $tps = {}
$tps = INPUT ENTITY MULTIPLE toolpath "Select some toolpaths"

//create NcP 
STRING ncName = INPUT "ENTER NAME"
CREATE NCPROGRAM $ncName

INFOBOX NEW "NC Verification Progress"
INFOBOX STYLE "WARNING"
INFOBOX STATE "auto_newline" TRUE
INFOBOX STATE "underline" TRUE
INFOBOX APPEND "Verified Toolpaths:"
INFOBOX STATE "auto_newline" TRUE
INFOBOX STYLE "Normal"
INFOBOX STATE "auto_newline" TRUE 	

//add Tps tp ncP
FOREACH $Tp IN $tps {
EDIT NCPROGRAM ; APPEND TOOLPATH $Tp

//set verification options &amp;amp; verify
EDIT PAR "entity('ncprogram','').Verification.MachineChecks.VerifyToolpaths" 1
EDIT PAR "entity('ncprogram','').Verification.MachineChecks.CheckConnections" 1
EDIT PAR "entity('ncprogram','').Verification.MachineClearance" .5
NCPVERIFICATION VERIFY&lt;BR /&gt;
INFOBOX APPEND $Tp 
INFOBOX STATE "auto_newline" TRUE
}&lt;/PRE&gt;</description>
      <pubDate>Thu, 08 Mar 2018 00:20:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7836591#M22544</guid>
      <dc:creator>TK.421</dc:creator>
      <dc:date>2018-03-08T00:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7836635#M22545</link>
      <description>&lt;P&gt;&lt;STRONG&gt;connecting moves between that and the first get checked?&lt;/STRONG&gt; YES&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The previous toolpath has already been verified - does it do it again?&lt;/STRONG&gt; NO&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;With its method, a few milliseconds longer.&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Do not worry.&lt;/SPAN&gt; Is good.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You can count the number of toolpaths and show the percentage already checked in INFOBOX. Coolest.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 00:36:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7836635#M22545</guid>
      <dc:creator>rafael.sansao</dc:creator>
      <dc:date>2018-03-08T00:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7836647#M22546</link>
      <description>&lt;P&gt;ok, obrigado amigo. I have 70 toolpaths going tonight, and i get nervous when I change things in my macros... if you say its good, then i can go home and rest easy &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;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 00:42:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7836647#M22546</guid>
      <dc:creator>TK.421</dc:creator>
      <dc:date>2018-03-08T00:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7838127#M22547</link>
      <description>&lt;P&gt;So, my infobox is functional and gives me what I need to see, but I would like to know if I can make it better. is it possible to get the percent at the bottom of the screen (second picture) to run in the infobox? While that program is being verified, i drag my infobox to a second monitor and work on another session of pmill in the main.&amp;nbsp; thanks!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture1.PNG" style="width: 218px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/472692iA3DE3D280350AC4D/image-dimensions/218x130?v=v2" width="218" height="130" role="button" title="Capture1.PNG" alt="Capture1.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="get this into infobox" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/472691i676F6BA10C79F4C6/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="get this into infobox" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;get this into infobox&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 14:16:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7838127#M22547</guid>
      <dc:creator>TK.421</dc:creator>
      <dc:date>2018-03-08T14:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7838157#M22548</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;No Unfortunately.&lt;BR /&gt;&lt;BR /&gt;You can do a small calculation and show on INFOBOX.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;TOTAL TOOLPATH: 21
% STEP: 100 / 21 = 4.7619
9(TOOLPATH ACTUAL) * 4.7619 = 42.85%&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 14:27:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7838157#M22548</guid>
      <dc:creator>rafael.sansao</dc:creator>
      <dc:date>2018-03-08T14:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7838209#M22549</link>
      <description>&lt;P&gt;that is the coolest, thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 14:36:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7838209#M22549</guid>
      <dc:creator>TK.421</dc:creator>
      <dc:date>2018-03-08T14:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7838722#M22550</link>
      <description>&lt;P&gt;Are you Batch Verifying?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If so, do you have the macro for that?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 17:15:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7838722#M22550</guid>
      <dc:creator>Pijetro</dc:creator>
      <dc:date>2018-03-08T17:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7838759#M22551</link>
      <description>&lt;P&gt;sort of. my macro selects a bunch of toolpaths and then posts as 1 nc program or individual. Last night (and this whole week) I've been posting 50+ 3+2 toolpaths in single programs. When it verifies, it can take up to 30-45 minutes. attached is my macro for that. let me know how you change it to suit your needs - just curious.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 17:25:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7838759#M22551</guid>
      <dc:creator>TK.421</dc:creator>
      <dc:date>2018-03-08T17:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7838765#M22552</link>
      <description>&lt;P&gt;i just remembered, that for posting individually i reference another macro because I am too lazy to type it out. here it is&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 17:27:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/7838765#M22552</guid>
      <dc:creator>TK.421</dc:creator>
      <dc:date>2018-03-08T17:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/8101666#M22553</link>
      <description>&lt;P&gt;Ok chief, I have added to my infobox to show me the time of each toolpath being verified, and I figured out to put it on a second line. is it possible to clear and update the percent line while adding lines to the bottom?&amp;nbsp; the &lt;EM&gt;INFOBOX CLEAR &lt;/EM&gt;command clears everything.&amp;nbsp; Maybe it is not possible?&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: 619px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/517887iB18405F9350157FD/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>Fri, 29 Jun 2018 20:38:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/8101666#M22553</guid>
      <dc:creator>TK.421</dc:creator>
      <dc:date>2018-06-29T20:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/8102583#M22554</link>
      <description>&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class=""&gt;After "INFOBOX CLEAR", rewrite all content.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;	INFOBOX NEW "NC Verification Progress"
	INT count = 1
	INT size = size(tps)
	REAL step = 100/$size
	&lt;FONT color="#0000FF"&gt;STRING $TP_text = ""&lt;/FONT&gt;
	//add Tps tp ncP
	FOREACH $Tp IN $tps {
		EDIT PAR "entity('ncprogram','').Verification.MachineChecks.VerifyToolpaths" 1
		EDIT PAR "entity('ncprogram','').Verification.MachineChecks.CheckConnections" 1
		EDIT PAR "entity('ncprogram','').Verification.MachineClearance" .5
		EDIT PAR "entity('ncprogram','').Verification.ToolAndModel.VerifyToolpaths" 0
		EDIT PAR "entity('ncprogram','').Verification.ToolAndModel.CheckConnections" 1
		NCPVERIFICATION VERIFY
		
		//add name to infobox when done
		REAL percntStep = round($count * $step, 2)
		&lt;FONT color="#0000FF"&gt;$TP_text = $TP_text + CRLF + $Tp.name + "   Elapsed time: " + "---variable time---"&lt;/FONT&gt;
		STRING msg = $count + " " + "of" + "  " + $size + CRLF + $percntStep + "%"&lt;FONT color="#0000FF"&gt; + CRLF + $TP_text&lt;/FONT&gt;
		INFOBOX CLEAR
		INFOBOX STYLE "WARNING"
		INFOBOX STATE "auto_newline" TRUE
		INFOBOX STATE "underline" TRUE
		INFOBOX APPEND "Verified Toolpaths:"
		INFOBOX STATE "auto_newline" TRUE
		INFOBOX STATE "auto_newline" TRUE 
		INFOBOX STYLE "Normal"
		INFOBOX APPEND $msg
		
		$count = $count + 1
	}&lt;/PRE&gt;</description>
      <pubDate>Sat, 30 Jun 2018 21:30:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/8102583#M22554</guid>
      <dc:creator>rafael.sansao</dc:creator>
      <dc:date>2018-06-30T21:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/8104184#M22555</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4163177"&gt;@rafael.sansao&lt;/a&gt;, that did it! Unfortunately, I cannot use this. Each time I add a toolpath to the nc program it verifies all the previous toolpaths. if the first toolpath takes 2.5 minutes and I add 5 toolpaths after that, it takes an additional 10 minutes of just rechecking the first toolpath...&amp;nbsp; Now I will put all toolpaths in nc program first and just check it as a whole.&amp;nbsp; Do you know off hand if there is a way to track with toolpath(s) has/have been verified if I have a program of many toolpaths? now I'm just left with the bar on the bottom. I will have to dig into this more later. The original reason I started the infobox was to give the operator some idea of how many toolpaths are left to verify in a huge program.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks again for your help!&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 11:09:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/8104184#M22555</guid>
      <dc:creator>TK.421</dc:creator>
      <dc:date>2018-07-02T11:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/8104211#M22556</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;No. Sorry.&lt;/SPAN&gt;&lt;BR /&gt;Showing on the INFOBOX just what NC Program you are checking is not enough?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 11:28:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/8104211#M22556</guid>
      <dc:creator>rafael.sansao</dc:creator>
      <dc:date>2018-07-02T11:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/8104262#M22557</link>
      <description>&lt;P&gt;I am only checking one NC PROGRAM - that program has many toolpaths. I was hoping there was a way to show the user which toolpath it is checking, and also how long each toolpath takes to verify.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will still use infobox for batch verifying multiple nc programs - but that is not what I am doing here. this was all for one nc program. my sincerest apologies for any misunderstanding.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 11:53:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/8104262#M22557</guid>
      <dc:creator>TK.421</dc:creator>
      <dc:date>2018-07-02T11:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/8221409#M22558</link>
      <description>&lt;P&gt;The message box does not display a run message in PowerMill Ultimate 2019&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 03:22:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/8221409#M22558</guid>
      <dc:creator>Ye。xg</dc:creator>
      <dc:date>2018-08-24T03:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Check Verification Progress</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/8223704#M22559</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4680222"&gt;@Ye。xg&lt;/a&gt;&amp;nbsp; I'll check that&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 21:37:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/check-verification-progress/m-p/8223704#M22559</guid>
      <dc:creator>TK.421</dc:creator>
      <dc:date>2018-08-24T21:37:17Z</dc:date>
    </item>
  </channel>
</rss>

