flash question?

Out of context: Reply #4

  • Started
  • Last post
  • 7 Responses
  • elliott0

    you can just insert this actionscript on the first frame of your _root timeline.

    _root.yourbutton.onRollOver = function(){
    _root.yourobject.gotoAndStop(10...
    }

    _root.yourbutton.onRollOut = function(){
    _root.yourobject.gotoAndStop(1);
    }

    changing "yourbutton" and "yourobject" to whatever instance name you give your button and mc.

    inside the mc of course is where you create the keyframes you want to send the mc to.

    i.e. gotoAndStop(10);

View thread