Goto frame in parent movie clip

I have a movie clip nested with in another movie clip. I was
wonder how i would do a on (release) gotoAndPlay command that would
be able to take me to a frame in the parent movie clip. How do i
jump back the parent movie clips timeline?
thanks,

myChildBtn.onRelease=function(){
myParent.gotoAndPlay(frame);
Dan Mode
--> Adobe Community Expert
*Flash Helps*
http://www.smithmediafusion.com/blog/?cat=11
*THE online Radio*
http://www.tornadostream.com
*Must Read*
http://www.smithmediafusion.com/blog
"tloughlin design" <[email protected]> wrote
in message
news:ecvf7u$4o0$[email protected]..
>I have a movie clip nested with in another movie clip. I
was wonder how i
> would do a on (release) gotoAndPlay command that would
be able to take me
> to a
> frame in the parent movie clip. How do i jump back the
parent movie clips
> timeline?
>
> thanks,
>

Similar Messages

  • Sencing the frame of a movie clip on click

    Hello.
    I have a project where the user will enter a frame with a movie clip and stop. The movie clip will continuously play a looping animation until the user selects one one the navigation options. After an option is selected I need the main timeline to move to a new frame but I need the movieclip timeline to continue playing at the exact place it was at when option was selected. Is there anyway to do this.
    As a side note I originally tried to work around the problem by staying at the same frame in the main time line and just loading movies on top of it. This was not a successful solution as it caused many headaches down the line.
    Any advice would be very much appreciated. Thank you.

    It's not entirely clear what you want.  In what way will the movieclip continue to play if you move away from the frame it lives in?  It cannot continue to do anything if you move away from it in the timeline.  If you mean that upon returning to that frame you want it to continue from where it left off, then you will need to have a variable that you assign the movieclips currentFrame value to so that you can tell it to play from there.
    If you want the movieclip to remain visible and playing, then if you dynamically load the movieclip that you want at that frame of the main timeline, it should remain in view regardless of where you move on the main timeline.  The reason for this being that dynamically loaded content does not have a home on the timeline unless you provide one for it, such as loading into a manually planted empty movieclip.

  • Selecting a frame in a movie clip

    Hi,
    A little help is required.
    I have a movie clip, that i need to display on all frames on
    the main timeline. I have animated the movie clip on its own
    timeline. However I don't want the movie clip to play intially when
    i load the movie. I only want it to play when a button is selected.
    Can anyone please help me to get the movie clip to only play once a
    button is clicked.
    Thanks

    I have all my movies etc working so that each button plays a
    separate movie clip.
    Within each movie I have start and stops mid way through the
    movie.
    What i want to happen is, when a button is clicked once, i
    want it to play frame 2-10 then when it is clicked again I want it
    to play 11-20. How do I make it recognise its a second click. I was
    thinking of using the boolean feature, but i'm not sure how this
    would be used.
    Can anyone help point me in the right direction?

  • Can I copy a single frame from a movie clip and paste it over a bad blank frame in the same clip?

    I have two frames in my video clip that are solid green.  I would like to copy the last good frame and paste over the green video frames for the movie to play without the green frames popping up. Is thispossible?

    You can install an App called MPEG Streamclip or you can simply pull up the clip in full screen and take a screen shot using (command+shift+3) or using (command+shift+4) to click and drag to create a box around what you would like to take a snap shot of.

  • Listener for frame label in movie clip

    I'd like to create an 'addListener' that will trigger an
    action when a certain movie clip reaches a frame label in that
    clip. Is this doable? (I've never used 'addListener' or listener
    events).
    Thanks for any help.

    with as3, yes. with as2, no.

  • Commanding a parent movie clip

    Hi guys, hope you can help. Firstly I'm new to Flash - please
    be gentle!
    I have 2 SWF files, A and B. A is a master page which loads B
    into itself (for use as a menu) using loadmovie. In B there are
    images that, when clicked, load an image into a programmatically
    created mc in A . Loading and rotating this mc from B is fine,
    however I cannot seem to, for example, apply filters to the mc in A
    from B . Also I can't seem to draw into A either.
    My ultimate aim is to have, when clicked in B, the mc in A
    display the photo (this works). Then I want to draw a white
    rectangle behind the mc and apply a drop shadow to it - the idea
    being that it ends up looking like a polaroid.
    I hope that makes sense!! Below is the code I am running
    (using Flash 8).
    Thanks a lot!
    Dan

    sorry had very less time i jus gave a glance to ur code bu
    don have the sufficient time to do it all at my end n c whats the
    prob...
    but i guess i know where u r stuck ....c lockroot
    property..when u load a file using loadMovie...using _root..here in
    ur case its _level0..it refers to _root of the loaded movie n not
    _root of the movie into which u loaded ...so use _lockroot property
    first in the fla that u r trying to load..
    i hope that ll solve the problem

  • Goto a new frame and stop the current movie clip?

    In cs5.5, I have a frame with a movie clip on it. When a user clicks a button, I want the movie clip to stop and the user to be directed to another frame. It is correctly redirecting to a different frame, however, the movie clip is still on the stage and playing. How can I modify the following code to make it not just go to a different frame, but also stop the movie clip that is on that frame from playing?
    btn_1.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame);
    function fl_ClickToGoToAndStopAtFrame(event:MouseEvent):void
              gotoAndStop(10);

    That worked, it stopped the movie clip, however, the movie clip still shows on other frames. How do I modify the code to not only stop the movie clip but to make it disappear on the other frames?
    Thanks!
    btn_1.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame);
    function fl_ClickToGoToAndStopAtFrame(event:MouseEvent):void
              movieClipInstanceName.stop();
              gotoAndStop(10);

  • Making a button rollover change a movie clip's frame

    Hi again everyone,
    I knew how to do this in AS2 but now I am having problems
    with making a button on the stage goto a frame in a movie clip on
    the stage.
    I've attached a sample of my code below, hopefully you'll see
    the error and be able to point it out to me?
    I have a movie clip on the stage that has different
    information in different frames. I want to make it so that when
    someone rolls over the button, the movie clip fades in and goes to
    the correct frame to display the information.
    With this setup the way it is below, I keep getting "Warning:
    3590: void used where a Boolean value was expected. The expression
    will be type coerced to Boolean.
    I know where the problem is happening, "function
    XXX(event:MouseEvent):void {navigateToURL(XXXweb)}"
    How can I write this differently and eliminate this problem?
    Thanks,
    Jeremiah

    I'll give that a shot, thanks!
    A follow up question to that one, is there a way to make it
    so that I can have one rolled over function applied to several
    buttons / frames in the movie clip? This movie clip has 50+ frames
    in it and if I could reduce my coding, it would make life a lot
    easier.
    Thanks,
    Jeremiah

  • Difficulties with movie clips and frames

    This is really irking me.
    I am extremely new to Flash so please bear with me. I am assuming that this is a simple, easy to fix problem that I am having. I have Adobe Flash Professional CS5.5.
    What I am trying to do is display a sequence of images after other movie clips stop playing.
    The image sequence itself does what it is supposed to and works properly, and the other movie clips also are successful. However, whenever I try to put the movie clips for the images in frames or keyframes, the beginning movie clips only play part of the way before the images show up. This happens even though the images' movie clips are on frames/keyframes (I've tried both) after the other movie clips.
    The movie clips that are supposed to play first are each on a separate layer and there are two of them.
    The first layer is called "tree" and the second is called "text"
    The tree layer has a 45-frame gif animation that I have turned into a movie clip. I have created a motion tween and changed its alpha so that the gif has a fading in and out effect. I also have it so that it stops replaying once it reaches the last frame. I am using stop(); for this.
    The text layer has a 40-frame gif animation that I have also turned into a gif. This gif is also a movie clip and also has motion tween. Its alpha has also been changed.
    Both tree and text play together successfully and how I want them to.
    The sequence of images is three separate images, each a different layer, that fade into eachother. These images are pngs, therefore they aren't gifs nor do they have their own frames.
    The bottom layer is called floor1 and has frames 1 through 50 of motion tween and alpha adjustments fading the png image. The image is a movie clip.
    The layer on top is called floor2 and has frames 51-100 of a different png image fading.
    The very top layer is called floor3 and has frames 101-150 of yet another png fading.
    The images are successful in doing what they are supposed to.
    Layers tree and text are one fla file, and layers floor1, floor2, and floor3 are a separate fla file.
    When I copy the frames from layers floor1, floor2, and floor3 into a keyframe after layers text and tree, they transfer properly, but when I test the animation, the image sequence shows up a lot sooner than it is supposed to, interrupting the movie clips on the layers text and tree. I have tried moving the floor# layers' keyframes farther down the timeline, but then the other movie clips just stop.
    In the fla file with layers text and tree, I've imported the gifs into the library and then put them onto the stage.
    In the fla file with the floor# layers, I've imported the pngs into the stage.
    Here's what the text and tree layers look like:
    Here's what the floor# layers look like:
    The rest of the frames for the floor#s...
    So, I thought that the problem was that I needed to delay the image squence. I looked around and found no code or anything for that..
    Afterwards, I thought that it was because I had imported the tree and text gifs to the library before putting them on the stage.
    I opened a new fla and imported the "tree" gif straight to the stage.
    I figured that this should work because then it would show each of the individual frames in the movie clips, which it doesn't do in the above pictures. By importing the gif like this, it does show the individual frames. I've tested this with the image sequence and it works fine. But I have a problem with this method too..
    I select all of the frames for the gif to convert into a symbol, so I can add a motion tween and mess with the alpha. However, only the last frame is converted into a movie clip. Well actually no... Only the circled frames below are turned into the movie clip. Even when all of the frames are selected.  This isn't very helpful because then I can't change the alpha for the entire gif nor can I create a motion tween without getting a message saying that the motion tween could not be applied to all of the frames.
    Here's what this version of "tree" looks like.
    And the frames continue like so until 135.
    The frames that are turned into the movie clip are circled below.
    If I can solve the issue that I'm having with the tree shown in the two pictures above this sentence, then I can display the movie clips and image sequence without a problem. It wouldn't be quite how I had intended it to be, but it would be successful and would still work.
    If I can fix the problem with the image sequence showing up to early, and of the tree and text movie clips being cut off, then this project would also be successful and it would be how I had wanted it to be.
    If you need clarification, let me know and I'll explain something better.
    I am not willing to provide a download link in this forum for my fla files, but I can email them to you if you would like a look. I just don't want someone to be able to find them and take them by doing a google search.
    I have uploaded two swfs though.
    The first is of the tree and text layers/movie clips working as they are supposed to. The second is of the image sequence (floor1, floor2, floor3) doing what it is supposed to.
    Text and tree: http://glassoliverdesigns.weebly.com/uploads/1/0/6/5/10653451/tfg1.swf
    Floor1, floor2, floor3: http://glassoliverdesigns.weebly.com/uploads/1/0/6/5/10653451/tfg2.swf
    Notice how at the end of the text and tree swf, when the text stops the thing in the background keeps flashing. If that can keep flashing WHILE the images appear, then that would be great.
    TL;DR: I want the floor# flash to show up after the text and tree flash but I keep having problems and nothing I try is working properly.

    Very concise question, appreciate the screenshots. One thing that motion tweens don't always show very well is keyframes. Let me clear a few things up and see if it helps.
    Go back to what you wanted to do originally, which is copying the frames from one document to another. This is perfectly fine and to clear it up, it will also copy any library elements (images, clips, etc) that are required to copy those frames for you, so you do not need to import them yourself.
    To successfully copy frames (not symbols), select the first frame of the frames you want to copy, hold shift and select the last frame (alternatively double clicking anywhere in the blue motion tween should select it all as well). Now right-click and "Copy Frames". Now go into your new document, select a frame, right-click and select Paste Frames. You will see the same frames copied over, the blue representing the tween and keyframes came with it and you finally will notice all your images/etc were copied into your library.
    Now is a good time to manage the library clutter that was just copied in, if you're a clean freak like me.
    This process is the same, as you tried, for the other documents you want to copy in. If any resources match in name then Flash will ask you if you want to "overwrite" that library item. If you do that,  you will break one of your previous animations. Make sure that's not the case.
    The common gotcha here is not knowing how to slide frames over properly. If overwriting isn't the issue, this is what I suspect your problem is and as you expand/contract the timeline the keyframes aren't going with you.
    For example if I import 2 clips with fade in/out and move keyframes as you did I'll get something like this:
    Now moving them over I would be very careful to select all of the frames I want to move via the methods above. Click the first frame, hold shift and select the last frame, or double-click anywhere in the middle of the blue. The selection of frames:
    Now I simply drag my selected frames to the right, notice the keyframes stay as they should (the black dots):
    The animation plays as expected.
    Lastly I'm not sure if you've ever used the panel but you should really get used to the Motion Editor. This gives you control over easing as well as shows you an in-depth view of the keyframes that exist in a selected motion tween.
    At first this panel may look complex but it simply represents the basic properties you can animate. Any more properties you animate can be added in here. I moved the X, Y and Alpha properties of my object. So you can see over the frames 30-60 what I did. You can also adjust basic easing here.
    If your animations don't look correct you can select a motion tween, open the motion editor and verify the keyframes look correct. Scrub the timeline and look at the values you're interested in. Alpha for example, for you.
    If you don't see any keyframes when you scrub the timeline, you moved your frames over incorrectly and the keyframes probably exist in a different place and therefore it appears incorrect.

  • Menu made in movie clip - with sub-section we can click on to go to another frame

    I would like some help about that:
    I want to do a menu made all in movie clip (NO button). In
    this menu, when we click on one of the part (sub-section) of the
    button (which is a mc), we must go to another frame in the main
    scene.
    It is working for the roll-over and mousedown for my button
    (with the _up, _over and _down labels). But it's not working then
    to put, i don't know, another movie clip inside with alpha 0 to
    make another onRelease and then gotoAndStop(20); ...
    Here is the code I have in the main scene (first frame):
    stop();
    mon_clip_mc.onRelease = function() {
    //this._root.gotoAndStop(20);
    And here is the code I have in the first frame of the movie
    clip of the button:
    stop();
    I'd really appreciate some help! Thanx

    lalapinerouge,
    as far as I can see with your method for buttons, is that it
    only reads 1 button inside mon_clip_mc..
    I cant figure out why, i've tested it over, made new fla's
    with your method, and i still cant get it to work, nor do I
    understand why..
    I need to study abit more.
    Maybe someone in the Forum will have a look at this topic,
    and know what's going on with your method.
    In the mean time, heres a submenu I made for a site a while
    ago. This doesnt use timeline actionscript, ( because i was a
    newbie then ) =)
    if you have a look through the whole FLA, ( it's quite abit)
    you can get an Idea of how i do my movie clip buttons, till this
    day, i still use the same method, only i use mainly timeline
    actionscript..
    the main point to notice is that EVERY button ( even submenu
    ) is it's own movieclip...no button in there holds multiple sub
    buttons inside... This gives you complete control of each button,
    and endless possibilities for animation, tweens, and anything extra
    you would want to add to a button.
    Sorry I couldnt help you figure out your problem fully. Im
    still going to mess around with it abit more to see if i can figure
    it out..
    Hope you can addopt some useful info from this FLA.
    HERE

  • Movie Clip Thumbnail Gallery

    I'm using Flash 8 Professional
    Here's the swf:
    http://208.131.133.122/flash/
    And my fla:
    http://208.131.133.122/flash/scene.fla
    (8MB sorry!)
    Right now, when the mouse is in the same _x position as the
    last thumbnail, the thumbnails slide gently to the left to reveal
    more thumbnails then slide back to the right when the mouse moves
    to the left again.
    The problem is that they start sliding to the left whether or
    not the mouse is over the thumbnail gallery. If the mouse is at the
    bottom of the screen or the top of the screen and in the same _x
    position as the last thumbnail, they will begin sliding.
    I would like the thumbnails to begin sliding only when the
    mouse hovers over the row of thumbnails and not when it is outside
    that thumbnail area.
    I added some actionscript to stop the movement of the
    movieclip when the mouse is above the max or below the min _y
    position of the clip; but, it does not work.
    I don't really know what I'm doing. Can someone.... anyone...
    tell me if this is something that can be done? And if yes, how?
    Much thanks in advance.

    I see that your first wooden button is a 'scroll down' button
    which plays through
    the length of the thumbnails. Do you mean you want to
    replicate and reverse this on the third wooden button 'scroll up' ?
    I'm just guessing here but I'd say you accually have your
    thumbnail gallery scrolling down as a motion tween and your scroll
    up button just has a 'goto previous frame' type function on it?
    If the previous statement is true then I would suggest two
    options for you.
    1.) You take the scrolling functionality out of a timeline
    and do it all with action script. This would be the most effective
    way of doing it.
    2.) Since you probably don't want to make serious edits to
    that .fla. Here's another way. You have a boolean called 'is_rev'
    and a function called 'play_backwards'. These are contained within
    the same movie clip as your thumbnail gallery.
    <!-- code
    var is_rev:Boolean = false;
    -->
    Your third wooden button has these actions on it.
    on(release)
    this.is_rev = true;
    this.prevFrame(); // This is to start the reverse loop;
    Your first wooden button would have this on it.
    on(release)
    this.is_rev = false;
    this.play();
    Your second wooden button would have this on it.
    on(release)
    this.is_rev = false;
    The function would be:
    function play_backwards()
    if(this.is_rev)
    this.preFrame();
    Now on every single frame of your scrolling gallery you need
    to call this.play_backwards();
    Please note the way I structured the coding assumes every
    object is on the same timeline. If your buttons are in a
    different/parent movie clip relative to your gallery movie clip,
    your going to need to make sure 'this' is set relative to the two
    objects. (i.e. on your button -> this.prevFrame(); would
    probably be this.gallery.prevFrame(); )
    A quick design note. If your buttons symbolize scrolling not
    movement they should be reversed since as the thumbnail gallery is
    moving upwards the user is scrolling downwards.

  • How can I call in swf file to movie clip?

    Hi all ...
    This is my first post for advise, although fairly conversant
    with flash and as2.
    I am developing a new full screen background style website
    and have menu buttons contained within a movie clip (nav_c1) ...
    this re-aligns to the top centre of a page when user scales the
    browser window.
    I then have the content area (centre_content) movie clip ...
    this realigns to the centre of the page when a user scales the
    browser window.
    I have scripted the menu buttons to goto a labelled frame in
    the main timeline but I need, when at the labelled frame, to be
    able to call/load in an external swf file to play 'inside' the
    centre_content movie clip?
    for example:
    If I click my news button the flash file moves to the frame
    label news on the main timeline. This then shows a duplicate of the
    moive clip 'centre_content' which is called 'centre_news'. I need
    to be able to call/load an external news.swf, containing all the
    animated news info, to sit and play 'within' the movie clip
    'centre_news' ... so that it is effectively contained 'within' the
    movie clip file but loaded in place from an external swf file.
    Can anyone help please?
    I can post a rough working example online if need be.
    Many thanks
    A puzzled Adrian
    ps: I don't think I am needing to load the swf to a level 1
    area as I have tried this and instead of the swf file being loaded
    and contained within my movie clip file/area it instead seems to
    sit fixed on the main timeline (ie: not contained within the movie
    clip area).

    Thanks Sketchsta for you code. This looks like we're on the
    right lines as I see what the code is trying to do.
    Unfortunately though I can't seem to get this to work?
    I created a new file to get rid of other scripting that was
    going on and have placed a movie clip called centre_content onto
    the main timeline in frame 1 ... then I have applied your script to
    an actions frame above the movie clip also on frame 1. I change the
    path_to_file line with my swf name (callin.swf) which is a 1 frame
    flash file with some text on it ...
    ... but it doesn't bring in the callin.swf file ... it just
    shows the centre_content clip.
    Am i doing anything wrong?
    I also tried putting the script onto the first frame inside
    the centre_content movie clip but this doesn't appear to work
    either.
    Regarding the pre-loader ... can I simply build this into the
    swf file that is being called in to the movie clip?
    Thanks in advance for your support, it is much appreciated.
    Adrian

  • Referencing movie clips

    Help me, I'm completely stuck.
    All I want to do is make a button when pressed, change the
    frame of another movie clip at the same hierarchy as it (the button
    and clip have the same parent clip).
    I've tried this and it doesn't work:
    _parent.pdf2.gotoAndPlay(2);
    pdf2 is the name of the clip I want to change.
    Any help is apprecieated.

    if your button is on the same timeline as pdf2 use:

  • Frame reference within a clip within a clip

    this seems to be an almost universally puzzling question as I've not gotten any responses from any of the forums that I've posted on...
    Is it possible for me to have 1 movieclip consisting of multiple movie clips, in a .fla file, and reference specific frames of clips within a frame of the movie clip, from an outside .as file?
    In a .fla file I have a movie clip that consists of several frames, each containing a different movie clip to perform different actions of a character I am attempting to animate.  The basics of the code work fine, but now I'm trying to get into more detailed aspects of the characters actions and interactions and all the tutorials that I've come across thus far direct me to add various aspects of code throughout my animation which I feel would litter my program as this project grows.  My basic code is as follows
    class hero extends MovieClip
        variable definitions up here
        function onLoad()
            variable initializations here
        function onEnterFrame()
            if( Key.isDown(Key.RIGHT) )
                _xscale = 200;
                if( Key.isDown(Key.SHIFT) )
                    gotoAndStop("run");
                    _x = _x + run_speed;
                } else {
                    gotoAndStop("walk");
                    _x = _x + walk_speed;
    // more of that for the other carnal directions of the character's movement...
            } else if ( !Key.isDown() ){
                gotoAndStop("stand");
    This works fine.  Beyond this, I have a frame with the anchor lable "Punch" which contains a movie clip consisting of 5 frames.  Is it possible for me to reference specific frames within the movie clip within this frame of the big movie clip?

    you reference nested clips using dot notation BUT the parent clip must be on a frame where the child exists.  for example, if the _currentframe of parentMC contains childMC,   you could reference the frame number of childMC that's a child of parentMC using:
    trace(parentMC.childMC._currentframe);
    if childMC only exists on frame 2 of parentMC and parentMC is on its first frame, then you would need:
    parentMC.gotoAndStop(2);
    trace(parentMC.childMC._currentframe);

  • Movie clip stops playing for no reason

    I am making a banner that has multiple movie clips sharing the same area, creating different rainbow effects when different areas (invisible buttons) are moused over.
    First of all I couldn't figure out if there was a way to have one invisible button over the whole area that changed to a different colored effect with each mouse over (first mouse over the black and whites would change to reds, second would change it to blues, third would change it to browns, etc.). Since I couldn't figure this out I settled on creating three buttons covering a third of the banner each, so when the mouse passes over one button it changes to reds, over another button it changes to blues, over the third it changes to browns.
    The effects are movie clips where each frame has another stripe changing color so it goes in a wave effect from one to the next, and then goes back to white and black in the same manner.  The first frame of each movie clip I had to turn into a nested movie clip so I could turn the alpha to 0, since I was going to have these color effect movie clips on top of one another in the main timeline on different layers, and so you could see the effect even if that color layer wasn't on top. I used the same nested movie clip with zero alpha for the first frame of each color effect clip (reds movie clip, blues movie clip, etc), so I dont' know if that's an issue.
    Anyway, it seemed to work fine for a while, but after working on it for a while longer (and not getting any further since I removed most of the changes I made), now when I test the movie the mouse over does not seem to work correctly. It works fine, seemingly, for the first time I mouse over each button, but in order to have it work again I have to mouse over the button twice, and then it will pause randomly during a part of the clip and I have to move my mouse back over for the movie clip to continue.
    I can't tell if this is because of the overlapping movie clips, or because my buttons are messed up, or if my actionscript is messed up, or if the timeline has to be longer, or what. Currently the timeline is 55 frames, the same as each movie clip.
    I put a movieclip_instance.stop(); command in the first frame of the main timeline, is there a better way to do this? Should I put the stop command in the movie clip itself?
    Here is a section of my AS in the main timeline, this is my first time programming ever, in any language, and trying to learn from the internet is more difficult than I thought it would be.
    redmovie.stop();
    red_btn.addEventListener(MouseEvent.ROLL_OVER, playRed);
    function playRed(event:MouseEvent):void
              redmovie.play();

    I am not sure of what the problem is, so I don't know if this will help or not.  One thing I might suggest is that you use gotoAndPlay(1) instead of play().  That way, if your movieclip is in the middle of playing it won't continue but will start from the beginning.
    You could use one button to have the different movieclips play in sequence if you prefer that.  You would just need to have some form of counter that keeps track of which is the next to play. Somethin like...
    var mcCounter:uint = 0; // start at 0 since an array is being used to identify which movieclip to play
    var mcs:Array = new Array(redmovie, bluemovie, brownmovie);
    only_btn.addEventListener(MouseEvent.ROLL_OVER, playMC);
    function playMC(event:MouseEvent):void
             mcs[mcCounter].play();                  // tell the current mc to play
             mcCounter += 1;                            // increment for the next mc
             if(mcCounter == 3) mcCounter = 0;  // reset the counter if it exceeds the array

Maybe you are looking for

  • XML REPORT 'S OUTPUT DOESN'T OPEN DIRECTLY IN EXCEL

    Hi , I have two question 1) For one of our XML publisher report whose output needs to be displayed in EXCEL format, While submitting this concurrent program we change the "Format" field from PDF to EXCEL as PDF defaults always. Can we default format

  • Whitelist issues on host.  My IP changes.

    Whitelist issues on host. My IP changes. I have a client app that can connect to the database I have on the host fine using jdbc, but I have to add my IP every time to the whitelist. My IP is not static. What can on do on my site to eleviate that. Ca

  • ICal dead after update--access privileges/calendar cache error

    Hi all, iCal began acting a bit buggy earlier today--it wouldn't let me add any new events or see the details in old ones, even after closing and re-opening the program. I just did a software update (including OS software) and now it won't work at al

  • Kerning in freehand

    if i apply fairly extreme kerning to display text in Freehand, it looks fine on-screen but when it prints out, where one character overlaps another, rather than blending the two characters together as it does on screen, freehand crops the previous ch

  • CS 2 to CS 4

    Curious question...... I just upgraded from CS 2 to CS 4 .... there was a feature in CS 2 I used a fair amount down in the export that allowed me to grab a single frame of video for graphic use or whatever I wanted to do with the still frame....... s