Ask a Question related to Adobe Flash, Flex & Director, Design and Development.

  1. #1

    Default mc actions

    I want to make it so when a button is clicked, it will tell other movie clips to go to frame 1.

    This is the situation. I have 4 MC that are acting as buttons. There is an nimation for each. I need to make it so if one button is clicked it will play its animation, and it tells the other 3 MC's to go to frame 1 in their MC. The MC's are already loaded.

    Thanks


    fmurray webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Actions - loading actions by opening .atn action file
      WHAT YOU DO: * Double-click on, right-click/Open, or right-click/Open With (Photoshop) an .atn file RESULT: * Photoshop opens AND * The actions...
    2. Actions
      Hi Ng, how to supress the request of JPEG-Quality when saving converted images as JPEG-images. It is hundrets of images! Kind regards Frank
    3. PS6 Actions
      I have recorded and action to apply cropping to standard print aspect ratios as my digital camera has a different aspect ratio. How can I, within...
    4. using actions
      I presume this has been asked and answered before, but I am new to the group so here goes. Can I use the various 'actions" that are available for...
    5. cd-rom actions menu
      Can anyone tell me how to get the window that ask`s you what you want to do when you put a cd or dvd into the drive. I stupidly selected take no...
  3. #2

    Default Re: mc actions

    if your mcs are called like that

    mc1
    mc2
    mc3
    mc4

    when u press mc1

    on (release) {
    //this sends mc2-3 to frame 1
    _root.mc2.gotoAndStop(1);
    _root.mc3.gotoAndStop(1);
    _root.mc4.gotoAndStop(1);
    //this makes mc1 to play
    _root.mc1.play();
    }

    place this script to others mcs but change the instances


    elemental .std webforumsuser@macromedia.com Guest

Posting Permissions

  • You may not post new threads
  • You may not 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