I've created a quiz with 5 questions, 4 are multiple choice using the checkbox component. I need to record the answers selected, but I'm not sure how to look for which checkbox has been checked. My code looks like this:
if (_root.Checkbox3.clicked == true) {
_root.correct = 1;
_root.incorrect = 1;
}

Should it be checkbox.clicked, or checkbox.value, or something else? I can't find any help in Flash Help. I'm using Flash MX. I'd apprectiate anybody's help.
Thanks.