Targeting dynamic mc question

Out of context: Reply #4

  • Started
  • Last post
  • 11 Responses
  • unclesize0

    "I would like the ability to control each instance, ie:

    _root.menu.2.gotoAnd Stop(10);
    _root.menu.3.gotoAnd Stop(11);

    But I receive the aforementioned syntax error."

    first: be sure that you aren't typing this in the actions panel as you are in this thread:
    _root.menu.2.gotoAnd Stop(10);
    should be:
    _root.menu2.gotoAndStop(10);

    second: what method are you calling the MC's dynamically by?
    createEmptyMovieClip()?
    attachMovie()?

View thread