How can I retain Layer visibility once a document is closed
I have a PDF document with multiple layers. Depending on the stage of the project certain layers need to be turned on or off. For example, once I move from the development stage to the production stage, development will be unchecked and production will be checked for as long as the document remains in that stage. Layer visibility is controlled with this script:
if (event.target.value=="Off")
this.getOCGs()[1].state = false;
else this.getOCGs()[1].state = true;
It works great, but when the document is closed and reopened all layers are reset to their default state: Off. I've tried a ton of variables (including View State, InitState, etc) but can't get the initial visibility to remain on when the file is opened. Any thoughts on how to accomplish this?
