Quote:
Originally Posted by jeremywilken
You should use these event handlers.
Code:
home.onRollOver = function {
home.gotoAndStop(5);
}
home.onRollOut = function {
home.gotoAndStop(1);
}
|
I don't know why it's not working.
home is the instance of the movieclip. The mc has 5 frames. I put a stop on the 1st and 5th frame. As I rollover I want
home to move in the child to the 5th frame. When I rollout I want it to go reverse to frame 1 if possible.