If you write a cancel preSign event shouldn't that stop the postSign event from firing? In my limited experience I can't find a way to stop the script I entered under postSign from firing even if the preSign gets cancelled. For example I have this preSign script on the signature box.
if (form1.Page3.Author.Reviewed.Admin.rawValue == null || " ")
{
xfa.event.cancelAction = 1
xfa.host.messageBox("You did not select your name on the dropdown list located below.");
}
else
{};
I had to enter this same code in the postSign script because the preSign wouldn't stop the postSign from executting, even when a dropdown list wasn't value was selected as is required in the preSign.