Saving layer states in a document with radio buttons and lots of layers
Hello,
I am a visual designer with very limited js skills but am wondering if anyone could help me with an interactive PDF I've made in which I want to save whichever layer is open. The layers are set to display as radio buttons are clicked and there are 60 different layers. (I know.)
I found one piece of code just googling on line, which appears to be saving which radio button was selected but not displaying the corresponding layer.
function SetLayer() { // get the radio button status var layerName = this.getField("Layer").value; this.getField("LayerName").value = layerName; var ocgArray = this.getOCGs(); for (var i=0; i < ocgArray.length; i++) { if (layerName == ocgArray.name) ocgArray.state = true; else ocgArray.state = false; } } if (this.getField("LayerName") != "") { SetLayer(); } else { getActiveLayer(); } function getActiveLayer() { for (var i=0; i < ocgArray.length; i++) { if (ocgArray.state == true) { this.getField("LayerName").value = ocgArray.name; this.getField("Layer").value = ocgArray.name; } } } Does anyone know what I'm missing or how I could have it save the layer view as well? Here is my file:

