hey guys. i need help again =X
first of all… my motive is to have 2 radio buttons…
what i did was…
embed a movie clip symbol called “m_male” into a button name “male”. when the user clicks on male… the m_male movie will go to the second frame (where it will be shown as checked)
the problem is… i keep on getting this “Error: A ‘with’ action failed because the specified object did not exist.”
my code looks like this…
on (release) {
gender = “male”;
with(this.m_male) {
gotoAndPlay(“checked”);
}
with(this.female.m_female) {
gotoAndPlay(“uncheck”);
}
}
checked and uncheck is the frame lebels.
could anyone help solve this problem? or is there another easier method to implementing a radio button?
}