These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Reader Enabled form can you have a save button

goslinc
Registered: Sep 25 2007
Posts: 114

I have a form users with reader only are completing, and of course they are not used to being able to save a form. I was trying to add a regular button to the form, so they could see it, and click it merely to leave them into the file save process.

I was trying to use: App.ExecMenuItem("SaveAs");

but its not working, can someone help me get this working?

Thanks

My Product Information:
LiveCycle Designer, Windows
dk3dknight
Registered: Jan 22 2008
Posts: 136
I found this in the scripting manual its javascript.

"In LiveCycle Designer, the file must be saved at the application level. These scripts are examples of saving at the application level:

app.executeMenuItem("SaveAs");
or
var myDoc = event.target; myDoc.saveAs();

"

The section in the scripting reference was,
"JavaScript objects from Acrobat supported in LiveCycle Designer"
this item was near the bottom.

Hope this helps.