I have a dropdown box in my form (dp_25) with 2 choices -- 14% and 30%. I have a textbox (tbx_25) that will get it's value based on dp_25. That is, if dp_25=14%, dp_25 should "be" .14; if dp_25 is 30%, tbx_25 should be .30.
How do I do this? (I guess with jscript?)
TIA
In JavaScript:
dp_25.rawValue = tbx_25.rawValue.slice(0,tbx_25.rawValue.length-1);
Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script