Hi. My form submit button will not work unless the recipient has Adobe version 8.x Shouldnt it also work with the newer version 9? Javascript for my submit button pasted below:
Thx for any replies.
sean
if (typeof(app.viewerType)!="undefined")
if(app.viewerType == "Reader")
{
var msg = "You must use Adobe Reader 8.0 to send this form. You can download Adobe Reader 8 at: http://www.adobe.com/products/acrobat/r … tml";
app.alert(msg);
}
else
{
var b = this.getField("Bride E-mail").value;
var g = this.getField("Groom E-mail").value;
var i = this.getField("Info").value;
if (b && g) {
this.mailForm(true, "mywedding [at] kameleonvibe [dot] com", b + "; " + g, "", i + "Kameleon Wedding Info Sheet");
} else if (b && !g) {
this.mailForm(true, "mywedding [at] kameleonvibe [dot] com", b, "", i + "Kameleon Wedding Info Sheet");
} else if (!b && g) {
this.mailForm(true, "mywedding [at] kameleonvibe [dot] com", g, "", i + "Kameleon Wedding Info Sheet");
} else if (!b && !g) {
this.mailForm(true, "mywedding [at] kameleonvibe [dot] com", "", "", i + "Kameleon Wedding Info Sheet");
} }
George