I am trying to spawn a new PDF file to be created from an existing PDF
using Java Script within the LC designerI have this example but I can't
get it to workfunction createPdf(){ pdf = pdf$(); pdf.addText('Hello
World'); pdf.writeToFile('c:/temp/hello_world.pdf');
window.open('file://c:/temp/hello_world.pdf');}Is it possible to create
a PDF like this within LC Designer?