Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Show only
|
Search instead for
Did you mean:
This page has been translated for your convenience with an automatic translation service. This is not an official translation and may contain errors and inaccurate translations. Autodesk does not warrant, either expressly or implied, the accuracy, reliability or completeness of the information translated by the machine translation service and will not be liable for damages or losses caused by the trust placed in the translation service.Translate
This is actually something that can be handled in the post processor. Your post can be modified to use the tool description instead of the tool comment and post it out the same way.
writeToolBlock("T" + toolFormat.format(tool.number), mFormat.format(6));
if (tool.comment) {
writeComment(tool.comment);
}
This is how the post outputs the comment in the program, if there is one. What you need to do is change "tool.comment" to "tool.description" and your post will always output the description, as described in your original idea.
This would be great if everyone was a programmer and understood how to edit a post. For those us that last programmed in Fortran 77 in 1995... not so much.
man walks into a bar, orders a beer.... bartender gives him a glass of water, cup of hops, cup of barley, and some yeast. That will be $10.
I just modified my post and it still doesn't work. Some help would be appreciated, I've been struggling with this for quite some time. My post now reads:
Here are some JPEG screen shots of my tool comment and the way that it posts in the header. You can see the tool comment in the process is correct but the tool description is what comes up in the header of the post. Every time I post a new program, I need to go through and manually enter the tool information which has lead to some mistakes on the floor. I've been searching everywhere for a solution but have yet to find anything closer than this thread. Thank you very much!
I am having the same issue. I am trying to get the tool description to post at the top of the program. I would like to replace the tool type comment which is highlighted red on this line with my tool description.