I have a form created that I would like to add a button to lock all of the current fields and open a save as window. I know the script to lock all of the fields, but I am having trouble figuring out how to use a button to save. I would like to ideally have the form delete certian rows and force the user to save this as a new version. Any suggestions?
Solved! Go to Solution.
Views
Replies
Total Likes
You can execute the save as ... menu item via script to prompt the user to save with dialog using app.execMenuItem("SaveAs");
If you need anything more outside this (like providing a new filename, etc), security restrictions in acrobat/reader will prevent you from doing that. Also reader extensions will still apply if you try to save without having them.
Views
Replies
Total Likes
You can execute the save as ... menu item via script to prompt the user to save with dialog using app.execMenuItem("SaveAs");
If you need anything more outside this (like providing a new filename, etc), security restrictions in acrobat/reader will prevent you from doing that. Also reader extensions will still apply if you try to save without having them.
Views
Replies
Total Likes
AHA! Thank you so much!
I had found the javascript object "saveas" but in the LiveCycle help it
actually has "executeMenuItem" instead of "execMenuItem" and that was
not working.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies