Copy link to clipboard
Copied
Hi, Can Someone help me create a script for this, heres the scenario:
I Have Radio button choice A, B, C, D
Checkbox 1 & 2 (Read Only)
Textbox 1 (Read Only)
If I Choose Radio Button D, Checkbox 1 & 2 will turn off Read Only, then if i choose any of the checkboxes, Textbox 1 will turn off its Read Only Property.
Copy link to clipboard
Copied
As 'Mouse UP' action of radio button 'D' use this:
this.getField("Checkbox 1").readonly = false;
this.getField("Checkbox 2").readonly = false;
In both checkboxes as 'Mouse UP' action use this:
this.getField("Textbox 1").readonly = false;
Copy link to clipboard
Copied
When you do something like that it's important to also think of the reverse and implement it, ie. when should the field not be read-only...
Get ready! An upgraded Adobe Community experience is coming in January.
Learn more