I have a mc called about_mc with the following actions
about_mc.onEnterFrame = function()
{
if(rewind == true)
{
prevFrame();
}
about_mc.onRollOver = function()
{
rewind = false;
play();
}
about_mc.onRollOut = function()
{
rewind = true;
}
I would like to house 3 more mcs or btns inside for a drop down (about mc has a tween to make the size of the drop down) The problem is i cant seem to put any more mc’s or btns inside the existing mc because things seem to cancle themselves out. I have also tried attaching a movie clip with the extra btns to the stage to solve the problem but that does not work either.
Does anyone have a solution.
Thanks in Advance,
neonreel