What you're seeing it the Shell-PDF of an dynamic PDF form (aka XFA form). This happens because you're using a PDF viewer, which doesn't support the dynamic contents of this particular PDF.You'll have to use Adobe Acrobat Reader/Acrobat 8 or newer. Safari or Apple Preview are not useful for this pur...
Set the fields to allow RichTexts and select a font, that supports italic and bold styles, since not every font does it!The users can open the form field properties dialog in Adobe Acrobat/Reader by pressing [Ctrl]+[E] to select a different style, size or color.
Hi, so I guess you're trying to get the n-th instance of a master page used as background of a specific form page? In that case you'll need a combination of several scripting methods to find out. Given you have a field somewhere in the form, to display the current index the script looks this way: ...
So, you want to hide subform "SpouseSF" if the field "Textfield1" is empty? I have a couple of questions about that: 1. Where does the data come from for "Textfield1"? 2. What's the loop for?
Well, I can't say what's wrong, without knowing the hierachy of you form. But I can already see some problems in your script. 1. DON'T name variables or form objects (subforms, fields …) after scripting properties or default form elements! That's a no go and can cause very strange effects! So you be...
If you put the following code into the calculate event of rwStatementEntry, it should work. this.presence = Cell2.rawValue === "Old Statement" ? "hidden" : "visible";
Hi, it's not that difficult to keep tables the same size. The layout processor can determine the exact size of every object via script. This can be used to "transfer" the value to other objects. This is a calculate script to copy the cell heights of Table1 over to Table2. You possible have to modif...