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?
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.
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.