Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default Multiple Symbols

    I have a main movie, duh. First frame is set to stop. There is also a second
    frame.

    Now in this movie I have a movie clip. In this movie clip, I have buttons. I
    need a code that will affect the OUTERMOST movie area, the one that has 2
    FRAMES.

    What I want it to do is the GO TO AND PLAY FRAME (154) kind of thing. Does
    anyone have the code for this?

    Remember, the OUTERMOST movie timeline.

    Legolas9901 Guest

  2. Similar Questions and Discussions

    1. are there symbols in ID?
      I have to reuse a shape many times in my document and I would like to have the option of changing just one of the copies and have the rest update...
    2. Symbols
      I am interested in creating some personal palettes of symbols. I know how to make a symbol in an open document, however, I have not been able to any...
    3. Difficulty with multiple Symbols
      I have a main movie. First frame is set to stop. There is also a second frame. Now in this movie I have a movie clip. In this movie clip, I have...
    4. Symbols......
      When you save a symbol to the library, where the *((**& do they go? Apparently mine found "symbol heaven" because I sure can't find them!! :) --...
    5. batch update symbols across multiple pngs - fireworks MX?
      Fireworks Extensions at http://johndunning.com/fireworks Mr. John Dunning, you are my personal hero. Thank you so much for writing this...
  3. #2

    Default Re: Multiple Symbols

    specify _root in the code, which looks at the main timeline

    ie
    on(release){
    _root.gotoAndPlay(2);
    }

    WP

    "Legolas9901" <fly_bird13@hotmail.com> wrote in message
    news:c03hqg$9o6$1@forums.macromedia.com...
    > I have a main movie, duh. First frame is set to stop. There is also a
    second
    > frame.
    >
    > Now in this movie I have a movie clip. In this movie clip, I have
    buttons. I
    > need a code that will affect the OUTERMOST movie area, the one that has 2
    > FRAMES.
    >
    > What I want it to do is the GO TO AND PLAY FRAME (154) kind of thing.
    Does
    > anyone have the code for this?
    >
    > Remember, the OUTERMOST movie timeline.
    >

    wp Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139