Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
Clay,
This worked like a charm. However, is there a way to define the output file name (pdf output) without having to be prompted for it?
Are these functions and syntax relevant to Arbortext Editor 6.0?
I found an article on the PTC community, Document - CS233804, that uses fewer local params, but I'm having difficulty getting either example to run.
function test_cfg::test2() {
local params[];
params[ "outputFile" ] = '[path_to]\test-out.pdf';
params[ "stylesheet" ] = '[path_to]\doctypes\axdocbook\axdocbook.style';
local rc = compose::compose_for_pdf( current_doc(), params );
return rc;
}