Community
PowerMill Forum
Welcome to Autodesk’s PowerMill Forums. Share your knowledge, ask questions, and explore popular PowerMill topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Macro pause info

2 REPLIES 2
SOLVED
Reply
Message 1 of 3
Bnuno608
115 Views, 2 Replies

Macro pause info

Hi, is possible to put information inside macro pause?

 

I have more then 500 toolpath, I usually don't see all again, but lately I'm under pressure to get to effectively and less mistakes. So I need check alltoolpath,

 

I use a macro to select alltoolpath, and everytime I make resume, activates the next toolpath, etc etc

 

The ideia is me to see if something is missing.

 

Can I show data info inside macro pause Window?

 

Tool, feed ,speed , thickness, stepover?

 

Like create string, and macro pause $tool +ctrl $thickness

2 REPLIES 2
Message 2 of 3
icse
in reply to: Bnuno608

something like that?

foreach $tp in folder('toolpath') {
	activate toolpath ${tp.Name}
	
	string $msg = $tp.Name + CRLF + $tp.Tool.Name + CRLF + $tp.Thickness + CRLF + $tp.Stepover + CRLF + $tp.FeedRate.Cutting.Value + CRLF + $tp.FeedRate.CuttingSpeed.Value
	
	macro pause $msg
}
Message 3 of 3
Bnuno608
in reply to: icse

Perfect 😃 👍 

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Technology Administrators


Autodesk Design & Make Report