Hello, I have designed a form that uses Save function after filling the form... Form has been save as Adobe Reader Extended, but I have a problem to copy/move my trusted function to the JavaScript folder. The form is going to be run/executed on a remote server that I have no control with and it is running by another company and Server is shared by a lot of other people. So asking to copy/move my trusted function to JavaScript forder the answer I am sure will be complete ignorance or maximum NO. I wonder would there be a solution to this dilema bellow is the JavaScript. ------------ FormSaveAs = app.trustPropagatorFunction(function(oDoc,cPath,cFlName){ app.beginPriv(); try{ oDoc.saveAs(cPath + cFlName); }catch(e){ app.alert("Error During Save"); } app.endPriv(); }); TrustedFormSaveAs = app.trustedFunction(function(oDoc,cPath,cFlName){ app.beginPriv(); cPath = cPath.replace(/([^/])$/, "$1/"); FormSaveAs(oDoc,cPath,cFlName); app.endPriv(); }); ------------ Regards, JP
... View more