Custom Dialog Box Question
i have custom dialog box uses both radio buttons , edit_text fields. trying make when radio selected edit_text field filled suggested answer. possible , how done?
yes, data acquired fields "dialog.store()" function , loaded "dialog.load()" function. 1 radio button named "rad1" , text box named "txt1". code represents action script radio button, places "new text" the text field.
"rad1":function(dialog){
var rslt = dialog.store();
if(rslt["rad1"])
dialog.load({"txt1": "new text"});
},
the action script member of dialog object. can see examples of how can build downloading trial version of acrodialogs, build correct javascript code adding action radio button.
http://www.windjack.com/products/acrodialogs.html
thom parker
the source pdf scripting info
pdfscripting.com
the acrobat javascript reference, use , often
http://www.adobe.com/devnet/acrobat/javascript.html
then important javascript development tool in acrobat
the console window (video tutorial)
the console window(article)
More discussions in JavaScript
adobe
Comments
Post a Comment