Default Values in interactive text fields on incompatible browsers
Hello, I have pdf created in indesign with interactive textfields and checkboxes. In adobe pro I defined default values for that text fields. Also I defined "Will print" script, so defaul values are not printable, if someone not filled up interactive textfields and leave form with default values. Form works perfect on PC, but doest work on smartphone (iOS), so form can not be printed with blank interactive text fields. It cause that it can not be filled with pen after print. Is it be possible to define default values to be visible only on compatible pdf browsers? Or someone have any other solution for my problem?
Script for "will print"
for(var i=0;i<this.numFields;i++) { var oFld = this.getField(this.getNthFieldName(i)); if(oFld.type == "text") oFld.display = (oFld.value == oFld.defaultValue)?display.noPrint:display.visible; }
