-
Create a checkbox within a function, then access it later?
If you create a checkbox inside of a function, can you access it later outside the function? For example, to make the checkbox true at some point later in the script:
function makeTheCheckBox() { theCheckbox = w.add (“checkbox”,[0,0,100,30],”Checkbox Text”); }
makeTheCheckBox();
w.theCheckBox.value = true;
Sorry, there were no replies found.