Hello,
I am assembling a complex script but i am going to start with the first logice statement.
Basically to start i need to know how you write a script that uses the logic if the form is NOT saved then display message you need to save the form first.
Thats it for this part! Thanks.
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
you can do this in this way.
Acrobat/Reader uses the so called Dirty Flag to state if there have been made any changes to the form.
var dFlag = event.target.dirty
if (dFlag == true)
{
xfa.host.messageBox("Form was not saved yet");
}
Views
Replies
Total Likes
Hi,
you can do this in this way.
Acrobat/Reader uses the so called Dirty Flag to state if there have been made any changes to the form.
var dFlag = event.target.dirty
if (dFlag == true)
{
xfa.host.messageBox("Form was not saved yet");
}
Views
Replies
Total Likes
Thank you I will try it out!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies