how can I modify this script?
Can someone tell me if I can modify this code or if I need to use a different one? I'm using this script to formulate different text fields into one text field. It works fine but I'd like to format the text a bit. I'm using Centered (but that doesn't have anything to do with anything). I'd like to be able to double or even triple space in the destination field. When I hit the Return key the text moves down but as soon as I click outside the field the text jumps back up and doesn't allow me to format the lines of text as I would like. Or to even type in additional text into the field. What I did to get around that, is I created an additional text field that I can type into it (see my example script Text31).
Here's the script:
event.value = this.getField("blank").value + " \n" +
this.getField("WeInstall").value +"" +
this.getField("TotAllFootage").value +"" +
this.getField("Of").value +
this.getField("Height").value + " " +
this.getField("Type").value + "\n\n" +
this.getField("GateNumberA").value + " " +
this.getField("Text32").value + " " +
this.getField("NewFenLineA").value + "\n" +
this.getField("GateNumberB").value + " " +
this.getField("Text32B").value + " " +
this.getField("NewFenLineB").value + "\n" +
this.getField("GateNumberC").value + " " +
this.getField("Text32C").value + " " +
this.getField("NewFenLineC").value +"\n" +
this.getField("GateNumberD").value + "" +
this.getField("Text32D").value + " " +
this.getField("NewFenLineD").value + "\n\n\n " +
this.getField("TermPoSpecs").value + " " +
this.getField("TermPostDiam").value + " \n" +
this.getField("LPSpecs").value + " " +
this.getField("LinePostDiam").value + " \n " +
this.getField("RailSpecs").value + " " +
this.getField("TopRailDiam").value + " \n\n\n" +
this.getField("FootingsDuo").value + "\n\n" +
this.getField("Text31").value + "\n\n"
So, is it possible to use this script, modify it and eliminate Text31 field? Can someone chime in and let me know how? Thank you very much.
