Hi,
Im breaking my heart to try and figure this out. Basically I have a movie clip (Test), which I want to jump to a specific frame when one of 7 other movie clips are clicked. I can get it to work when I tell it to just go to a specific frame. But when I try and create and array for each of the frame numbers nothing happens. The script I have is as follows:
My Array
var linkArray:Array = Array(“1”, “2”, “3”, “4”, “5”, “6”, “7”, “8”);
Telltarget code
tellTarget (this.test) {
gotoAndStop(+linkArray[mc.index%7]);
}
}
};
As I said. If I put just the frame numer in it works fine. But using the +linkArray[mc.index%7] doesn’t work at all. Any help would be greatly appreciated.