I have a series of independant checkboxes on my PDF and I need to be able clear one after its been checked and now needs to be unchecked if the user clicks on it again.
I am playing with the JS code for this, but am not having much success.
Any ideas?
Bastien
I wish my computer would do what I want it to do,
instead of what I tell it to do...
I am playing with the JS code for this, but am not having much success.
Code:
var f = this.getField("additional_info.work_schedule_mon.s");
if(f.isBoxChecked(0))
f.checkThisBox(0,false);
else
app.alert("The Box is not Checked");
Bastien
I wish my computer would do what I want it to do,
instead of what I tell it to do...