Any help would be greatly appreciated, I can’t figure out why this isn’t working! I am building a menu that has some motion to it and grows - It is a type of balancing scale with four main spheres, and when you rollover one of the spheres new smaller spheres expand from it with links to different pages.
The entire thing is broken into sections, so each of the main spheres is a movie clip that then holds the other movie clips for the small spheres.
For some reason, I can’t get the smaller spheres to respond like movie clips to actions on the main timeline. Here is the really bare bones code I have broken it down to, just to see if I can get a response from the smaller spheres. farLeft is the name of the main movie clip, and meetB is the name of one of the smaller spheres.
**
stop;
farLeft.onRollOver = function()
{
farLeft.gotoAndPlay(2);
trace(“farLeft.onRollOver”);
};
farLeft.onPress = function ()
{
trace (“hello farLeft”);
};
farLeft.meetB.onPress = function ()
{
trace(“hello meetB”);
};
farLeft.onRollOut = function() {
farLeft.gotoAndPlay(19);
};
**
Right now, when you press the meetB movie clip it displays “hello farLeft” instead of “hello meetB”. Help?!?
I hope I am being clear, I have attached the flash file for anyone to see!