shop doc help
shop doc help
(OP)
I'm trying to customise a shop doc (NX6), but i'm not too good with .tcl
I've managed to modify the default "unique tool list by program" to the attatched, which is fine.
Now i want to modify the "advanced web page mill" so that in the 'cutting sequence' it will list the toolpath's in order of programs, as it does in the attatched file.
I think i need to modify the code inside "mill_html_cuttingseq.tpl" but i've tried various things without success, can someone point me in the right direction?
One other thing, it'd be nice if i could get the "unique tool list by program" doc to ignore the "NC program" entry, and just list the programs with toolpaths in them.
I've managed to modify the default "unique tool list by program" to the attatched, which is fine.
Now i want to modify the "advanced web page mill" so that in the 'cutting sequence' it will list the toolpath's in order of programs, as it does in the attatched file.
I think i need to modify the code inside "mill_html_cuttingseq.tpl" but i've tried various things without success, can someone point me in the right direction?
One other thing, it'd be nice if i could get the "unique tool list by program" doc to ignore the "NC program" entry, and just list the programs with toolpaths in them.





RE: shop doc help
RE: shop doc help
my shopdoc is from the shopdoc_programview_text.tpl.
i used the following code to avoid writing out the main program group:
if {[string match "NC_PROGRAM" $mom_object_name] == 0}\
{
MOM_output_literal "<TR BGCOLOR=white><TD> $mom_object_name </TD>"
}
my postprocessor makes the html linked below:
----
kukelyk
RE: shop doc help