Help with script Syntax
here condition script:
if validation(variable-execvalidate() ok)and fielda.rawvalue==2
or
(fieldb.rawvalue==1) ||
(fieldc.rawvalue==2)||
(dropdownlist.rawvalue==1)||
(dropdownlist.rawvalue==3) ||
(dropdownlist.rawvalue==4)
then
mail_form.execevent("click");
_____________________________________________________
i came script without luck! please help..
fields a,b,c radio buttons
thank you
if (form1.execvalidate()
&& (fielda.rawvalue==2||
(fieldb.rawvalue==1) ||
(fieldc.rawvalue==2)||
(dropdownlist.rawvalue==1)||
(dropdownlist.rawvalue==3) ||
(dropdownlist.rawvalue==4)
)
mail_hr.execevent("click");
you're missing parenthesis ')' @ end of if statement.
kyle
More discussions in LiveCycle Designer
adobe
Comments
Post a Comment