ok first so someone says do the tutorials on this site i have:)
ok now for the issue ok i have a button and on the ovver state i put an mc and say i named it “overmc” on that movie clip i have two layer
stop and motion
on the stop layer i have a “stop()” on frames 1, 10, and 20
on the motion layer i have keyframes om the same fames with text… the 1 frame on the motion layer is labeled “on” and on frame ten it is named “off” ok now when i roll over on the button i wanted it to play “on” and when i roll off i want it to play off
so would i use a tell target cause that is what i tried
heres the code i have
on (rollOver) {
tellTarget (“overmc”) {
gotoAndPlay(“on”);
}
}
on (release) {
tellTarget (“tomc”) {
gotoAndPlay(“off”);
}
}
but it dont work