Programming combo box to go on a specific page
hi all,
i have form requires user select 'yes' or 'no'.
if user selects 'yes', form takes user page 6 , if selects 'no', takes him page 8.
now easy livecycle. although having troubles doing same acrobat pro.
please help.
thank you,
akanksha
use custom validation script, such 1 (make sure tick option commit selected value immediately):
if (event.value=="yes") this.pagenum = 5;
else if (event.value=="no") this.pagenum = 7;
More discussions in JavaScript
adobe
Comments
Post a Comment