Clinton,close, but check how what the ravwalue will be when it is off or
on. so i would do the following://if yes, then it opens the childif
(parentcheckbox.rawValue == 1){ childbox1.access = "open" ...so
forth}//if no, it will make the child readOnly and remove checks if they
existif (parentcheckbox.rawValue == 0){ childbox1.access = "readOnly"
childbox1.rawValue = "0" so forth for each childbox}//you can also use a
case switch, but since this is only 2 options, if statements work
well.//childb...