Flash help

Out of context: Reply #1

  • Started
  • Last post
  • 3 Responses
  • unfittoprint0

    Create a copy of your subButton symbol in the Library and name it firstButton [also on the linkage identifier].

    on the stage, your navigation MC has a for in loop. within you have something like:

    myButton.attachMovie("subButton... "sub"+x, x);

    change this to:

    (x!=0) ? myButton.attachMovie("subButton... "sub"+x, x) : myButton.attachMovie("firstButto... "sub"+x, x)

    note: onClip events are deprecated. use Movieclip.onmnLoad on action layer instead-

View thread