Text Insertion the Right Way

In this tutorial I show how text insertion can be done the right way.  Many forms I see instert text as if the form was made to be filled out on paper.  Hopefully, this lesson can help you bring your pdf forms up to date.

JavaScript used in this tutorial:

var v_oldtext = FORM.Main.txtInsert.rawValue;
var v_newtext = v_oldtext.replace(“[Address Here]”, this.rawValue);
FORM.Main.txtInsert.rawValue = v_newtext;
HTML Snippets Powered By : XYZScripts.com