I have attempted to write a validation script, it is as follows:
//allow user to enter only 4 or 0 and open app.alert for any other numbers entered.
if(this.field!=4);
{
else if(this.field!=0);
}
{
app.alert ("must score only 4 or 0");
}
I have tried several different ways and nothing is working. Where am I going wrong?
You might want to review some of Thom Parker's tutorials and the eSeminars on demand on this site. And down load the Acrobat JavaScript documentation.
George Kaiser