I am trying to control a movie clip symbol within a button.
The movie clip instance is named within the button and starts on the “Over” section.
I want to control it from the button instance - ie. using roll over, roll off etc.
Using dot notation I tried :
on (rollOver) {
tellTarget ("_root.buttonname.movielcipname") {
gotoAndStop (2);
}
}
I can’t get it to work, what am I doing wrong?