We have an interactive form that the user saves when completed and returns to us later.
Currently using the script below that allows the user to save the form if it passes validation. If they skipped a required question a pop-up appears to tell them which ones they missed. However I would also like to have a pop-up box to appear after they click the "save" button to let them know the form was validated and can now me saved. How do I add that? Thanks!!
This is the script I am currently using:
if (MICPAUMFORMtest.execValidate())
{
app.execMenuItem("Save As") ;
}
else
{
}