Skip to main content
Participant
September 2, 2008
Question

order movie clips on mouse over

  • September 2, 2008
  • 1 reply
  • 203 views
Have four movie clips on same frame/stage. On mouse over each one plays individually and overlaps the others. I need a script that will bring forward the movie clip that is currently moused over sending the previous clip behind the current clip. The clips are named btnB_mc, btnC_mc etc.. None of the clips need to have any onRelease functions.


Thanks for any help.

This topic has been closed for replies.

1 reply

Participant
September 2, 2008
this code brings the moused over clip forward, but make the clip play jumpy on RollOut. Just need a little help on where this should be listed and if there is something missing.

btnB_mc.onRollOut = function() {
this.swapDepths(_root.getNextHighestDepth());
};