Hi,
I am begging you for help.
I am trying to create PDF form, I want to hide some fields with a checkbox when they are not needed. (Exactly - field should be hidden/invisible if checkbox is off)
I've already tried several solutions but nothing works.
I hoped that my solution is here: http://www.acrobatusers.com/forums/aucbb/viewtopic.php?id=13447
but this script doesn't work in my form.
I even created sample form with only two objects: checkbox and numeric field and put this script:
----- form1.#subform[0].CheckBox1::exit: - (FormCalc, both) ----------------------------------------
if (CheckBox1.rawValue == 0) then
NumericField1.Presence = "visible"
else
NumericField1.Presence = "invisible"
endif
Where did I make mistake?