Hi,
I am attempting to use a button that pulls the values from two separate text fields as the file name with the Save as command. Very new using javascript in a pdf document.
My two text fields are:
name
med
I need to know how to create the value string for the file name and the proper Save as command.
Thank in advance for any help.
S.
[b]To get values:[/b]
name = this.getField("name").value;
med = this.getField("med").value;
[b]To Save:[/b]
filename = name + med + ".pdf"
this.saveAs( filename );