Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
chk10.setChangeHandler("checkAll");
function checkAll() {
if (chk10.getValue()) {
for (i=1; i<10; i++) {
_root["chk"+i].setValue(true);
}
} else {
for (i=1; i<10; i++) {
_root["chk"+i].setValue(false);
}
}
}
chk_AALL.setChangeHandler("checkAll");
function checkAll() {
trace("in function");
if (chk_AALL.value == true) {
for (i=1; i<8; i++) {
["chk_A0"+i].setValue(true);
trace(i + " true");
}
} else if (chk_AALL.value == false) {
for (i=1; i<8; i++) {
["chk_A0"+i].setValue(false);
trace(i + " false");
}
}
}