Flash Chart Help

Out of context: Reply #15

  • Started
  • Last post
  • 23 Responses
  • tGP0

    blackspade, take into consideration that A) you must have your buttons instance named on the stage, and B) the syntax myButton.onPress... is assuming we are using movieclip buttons, if you are using flash buttons (with hit, up, over states) you need to put the code directly on the button and use:

    on (press) {
    _root.myPath.myClip1._visible = false;
    _root.myPath.myClip2.loadMovie...

    }

    as you can see, one of the advantages of using movieclips as buttons, is that you can centralize your button code and place it in a central location, such as the main timeline, and this tends to make targeting a bit less complex...

    cheers.
    j

View thread