Macro pause info

nubrandao
Advocate
Advocate

Macro pause info

nubrandao
Advocate
Advocate

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

0 Likes
Reply
Accepted solutions (1)
259 Views
2 Replies
Replies (2)

icse
Collaborator
Collaborator
Accepted solution

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
}
0 Likes

nubrandao
Advocate
Advocate

Perfect 😃 👍 

0 Likes