Hello,
I'm trying to open a PDF (child.pdf) from a PDF(main.pdf). If the both the main.pdf and child.pdf reside in the same directory, the code below works fine.
app.openDoc("child.pdf");
However, if I move the child.pdf to c:\pdf_templates\child.pdf and modify the code to:
app.openDoc("c/pdf_templates/child.pdf");
I get the following error:
Exception in line 1 of function top_level, script XFA:form1[0]:#subform[0]:Button1[0]:mouseUp
NotAllowedError: Security settings prevent access to this property or method.
App.openDoc:1:XFA:form1[0]:#subform[0]:Button1[0]:mouseUp
The error is to do with security settings preventing access to the another path. I have check and re-checked all security settings and I still get the error.
Any ideas on how I can overcome this issue???
Thanks,
Jose