I have a timeline, and on it I have two checkboxes with a submit button. (frame 15)
With an instance name of "cb1" and "cb2" submit button named "sender"....
When the user presses submit it ships them off to frame 20. I have two check boxes on frame 20 named sendme and yesreceive.
if (cb1.selected=true){
{
sendme.selected=true;
}
}
if (cb2.selected=true){
{
yesreceive.selected=true;
}
}
For some reason sendme is always selected, even when it isn't clicked.
Any ideas?
Start Free Trial