Sound from separate movie clips over laps.

I have 4 buttons that each lead to 4 different frames with a gotoAndStop() command. Each of those frames has a movie clip on it. But for some reason the sound that I have triple checked plays from more than one movie clip. It's weird because the sound is only in the movie clips.
Here are some pictures.
http://rapidshare.com/files/382828989/2.png.html
http://rapidshare.com/files/382829165/1.png.html

And here is the project file its self.
http://rapidshare.com/files/382874382/Project.fla.html

Similar Messages

  • I have FCE 4.0.1 and running OS x 10.7.5  when i burn my movie the audio from my movie clips don't come through .  My Sound effects and music can be heard.  I export to Quicktime movie, make it self contained then open IDVD for an intro and burn it.

    I have FCE 4.0.1 and running OS x 10.7.5  when i burn my movie the audio from my movie clips don't come through .  My Sound effects and music can be heard.  First I export to Quicktime movie, make it self contained then open IDVD for an intro and burn it.  everything sounds great in preview but then ( once again)I lose my audio from my movie clips.

    Try Mixing Down the audio before export.
    This info may help;
    https://discussions.apple.com/message/1060680?messageID=1060680&amp%3b#1060680
    Also serch this forum for Mix Down you should find lots of info.
    Al

  • HT4437 My Apple Tv will only mirror the sound from a movie I mirrored from my computer, but not the picture.How do I fix that?

    My Apple Tv will only the mirror the sound from a movie I mirrored from my Macbook Pro. How do I get the picture?

    Do you have a valid credit card associated with the account? If so then I would contact iTunes

  • Subject : Slideshow looks bad  Hello guys  I have a project in my Final Cut just about done.  I want to add my slideshow as part of the project and burn it to DVD.  In my slideshow, there are some stills from the movie clips and some downloaded from the i

    Subject : Slideshow looks bad
    Hello guys
    I have a project in my Final Cut just about done.  I want to add my slideshow as part ofthe project and burn it to DVD.  Inmy slideshow, there are some stills from the movie clips and some downloadedfrom the internet but they all look blur when playback and even worse if Iapply Ken Burn to it.   Pleasesome one can tell my how to do it right or it can’t be done because thedownload quality and stills from the clip are not suitable or slideshow.  Thank you
    PSC

    Thank you Ross.
    The entire DVD containing Quick Time movies (Final CutExpress project) and slideshow was done in iPhoto.  The Final Cut project was rendered prior to export to QT,  the slideshow was sent to iDVD withoutrendering. The slideshow with most of the pictures from my still camera incombination with stills from movie clips and some downloaded from the Internet.After burning, the movie playback is perfect but the slideshow is not.  The slideshow containing 3 differentkinds of pictures; those from my still camera looks OK; the stills from themovie clips and from the Internet are not.  I don’t have much knowledge in this game, but I think NTSCwith frame size 720x480, and the downloaded picture Item Property shows most ofthem are between 400 to 500 x 300 to 600, may be both of them are not suitablefor TV screen while the stills from my still camera looks OK because they are2048x1536.  Please enlightenme.  Once again, thank you so much,I really appreciate the time you offered.
    psc

  • Passing a variable from a movie clip to the main timeline

    Hi,
    I'm having trouble passing a variable from a movie clip in my
    flash file to the main timeline.
    I have a movieclip with the instance name IntroNav which
    contains several buttons. Clicking a button sets the variable
    "page" to a specific name, i.e. page = "home"
    However, outside of the movie clip, on the main timeline I am
    unable to call this variable, and "page" seems to have no value.
    Can anyone tell me why this is and how to solve it?
    Thanks

    Umm, yes ... declare your variables correctly.
    var page:String = new String(); //proper complete
    var page:String; //strict typing
    var page:String = "home"; //stirct typing with value
    declaration
    Do not declare the variable in your buttons, you would have
    to do so in every button and be constantly resetting the value.
    Declare it on the main timeline at the lowest level. You do not
    need to use it as a _global, you just need to resolve your path
    issues. You can 'set' the variable value from a button, without any
    problem, but you have to call to the variable correctly.
    You do not 'name' a variable as "_root.page" , the '_root'
    refers to the lowest level of the SWF or the main timeline, as does
    a call to ' _level0' (that's a zero). If the variable is declared
    on the main timeline, and you're calling from the MC/button or
    anywhere you can refer to the variable by calling to it by
    the proper path of '_root.page'
    To set the variable from any of your button/MC instances
    call:
    _root.page = "value"; OR _level0.page = "value";
    But you must have the varibale declared on the main timeline,
    and only once and the playhead should be stopped or it will reset
    the value to the default upon looping.

  • How do I mute the sound on a movie clip that I'm using in iphoto slide show?

    I cant get rid of the sound on a movie clip I'm using in an iphoto slide show. I want to mute it as I'm using music on the slideshow. Thanks!

    Did your Mac come with iMovie preinstalled?
    Then you could export your video, import it to iMovie and remove the audio track. iMovie has two methods to silence a video clip - you can either select the clip in the project and use the command "Detach audio" or chance the audio settings of the clip and set the volume to zero. Then render the video new and import the silent version to iPhoto to use in the slideshow.
    Regards
    Léonie

  • How do I remove all sound from my original clips?

    I've recently bought iMovie and am trying to get some editing done. I'd like to remove all the sound from my original clips and only have the music track I've added as background music, I've watched the tutorials and tried adjustments but alas, nothing seems to work, where am I going wrong?

    First you must drag the clips to a project. The event clips will always have the original audio.
    In the project, select one of the clips and open the inspector to the Audio tab. Set the volume slider to zero.
    You can repeat this for all the clips, or here is a shortcut.
    Do the first one, then with it still selected, click EDIT/COPY, then EDIT/SELECT ALL, then EDIT/PASTE ADJUSTMENTS.../AUDIO ADJUSTMENTS.

  • OnRollOver sound in a movie clip object

    Scenario: I have a  frame with a quiz question and three answer options. The three answer options are movie clips. Their instance names are q1_soundA, q1_soundB, and q1_soundC. I want each option to make a different sound when rolling over them. My sounds are already in the library and they have been linked: each one has a unique identifier (a, b, and c) and "Export for ActionScript" and "Export in first frame" are checked. Under frame properties, sound is none, sync is event, and repeat is 1.
    I have a separate layer with the following code in the first frame (the quiz question is in the second frame):
    var snd_a = new Sound();
    snd_a.attachSound("a");
    var snd_b = new Sound();
    snd_b.attachSound("b");
    var snd_c = new Sound();
    snd_c.attachSound("c");
    gotoAndStop("q1"); // Go to the first question
    // Sounds to be played as options in each question
    q1_soundA.onRollOver = function () { snd_a.start(0,1); }
    q1_soundB.onRollOver = function () { snd_b.start(0,1); }
    q1_soundC.onRollOver = function () { snd_c.start(0,1); }
    q1_soundA.onRollOut = function () { snd_a.stop(); }
    q1_soundB.onRollOut = function () { snd_b.stop(); }
    q1_soundC.onRollOut = function () { snd_c.stop(); }
    Note: I also have three transparent buttons underneath each movie clip. I am using these buttons and some code to record the answers and calculate a score. This part is working fine though.
    Problem: As soon as the quiz question frame is displayed, the first sound is played over and over again even if the cursor is not even close to any of the option answers. It doesn't matter where I move or click, the sound keeps playing all the time. I am new to ActionScript, so I'm not sure if I'm missing something somewhere. There is no code in any other frame or object.
    Thanks in advance for your help.

    Update: I found one "Over" frame event  in one of the answer options which was playing the sound. I got rid of it and now my onRollOver code is doing nothing. The code stays the same as above.

  • Main timeline/separate movie clip timeline

    I am trying to understand this by using example:
    I have rectangle that i want to move from one corner of the stage to another. I will create tween for it. This will  last 48 sec(stage is set as 24fps)
    Now when this animation is done (main time line) I would want this rectangle to stay at that corner and I would want separate animation (inside my movie clip for this object) to start changing colors but not moving at all.
    What is the frame that i should start this separate animation that should be independant of main timeline?
    Thanks

    I played with it last night and I think I got it now.  I wanted to understand amnimation within animation(i think they call it nesting as well). I implemented this file as a rectangle going over image and rectangle contains some text that has its own animation.
    I really appreciate your help. I think I am ok now with multiple animation but I have now another question about mask which I will ask in separate thread. Hopefully you can give me some suggestions.

  • How to extend audio from a video clip over an adjacent still image

    I'm in iMovie 11.  My project looks like this: video A, transition, still image B, transition, video C.  I want the sound from video C to start playing while still image B is on the screen.  I tried following the iMovie 11 help instructions for extending a video clip's audio.  I click on video C and open the precision editor.  From there I can grab video C and move it back so that it overlaps with the still image, but all that happens is the still image still shows up, without sound, and video clip C starts in the middle.  The help instructions seem to indicate that I should be able to drag only the audio and make that overlap the still image, but it's not happening.  Either the video and audio move together, or nothing moves.
    When I try detatching video C from its audio, I just end up with a big mess because later the audio and video don't synch up.
    What am I doing wrong?

    I am having the same challenge... any tips here would help me out in a big way. I recorded my boss tdoing a training session and now I would like to have the powerpoint slides change as necessary - but I want the audio to remain. I would love to just get the slides to change rather than back to full before bringing up the next slide. Jim, if you come up with anything, let me know. I have VC2 pro.

  • Sound in a movie clip malfunctions when play head is moved backward

    Problem summary:
    A sound (stream) placed inside a movie clip that is within another movie clip will start playing continuously when I use the play control to jump around on the main timeline.
    Details:
    I am using Flash CS3 but the same issue occurs with CS6. I've spent quite a bit time to search/research for the issue but didn't find a solution. To demonstrate the problem, I've reduced the flash movie to a very simple structure.
    One the main timeline:
    The first frame has a movie clip (Game MC) and a stop action.
    Following the first frame, there are several frames, mostly empty except some text.
    The last frame has a stop action.
    On the Game MC timeline:
    There is only one frame. On that frame, there is a movie clip (Card MC), and the stop action.
    On the Card MC timeline:
    It starts with 3 blank frames and a stop action.
    Starting at frame 4, a sound (.wav format) is placed and is set to be "stream."
    At the end of this timeline, there is a stop action.
    From Flash CS3, I press Ctrl+Enter to test the movie. The movie stops on frame 1 of the main timeline with the card showing, no sound, as expected. Now I use "." to move the play head forward one frame at a time. No problem. I see the frames after the first frame. Still no sound, as expected. So far so good.
    The problem starts when I use "," to move the play head backward, the sound in the Card MC starts to play, regardless where the play head is, even when the Game MC (thence the Card MC) is not on the stage. Worse, each press of "," will trigger another start of the same sound overlapping with the previous one. And the sound would continue in loops until I close the swf.
    However, the problem will not occur if I place the Card MC directly on the main timeline. It only occurs when it is inside another movie clip (Game MC).
    I need to solve this problem because the full version of the flash card game is to be placed in an HTML page with a javascript based play control, which allows the viewer to jump around in the swf timeline.  
    The fla file is at: https://docs.google.com/file/d/0B_5mgotjr4l5RDZaOGxFeFFWN1U/edit?pli=1
    Am I doing something wrong? Is this a bug in Flash? Any insight will be greatly appreciated.
    Keith

    Thanks. But the problem is that the timeline for the movie clip (Card MC) where the sound is should not have been run because the play head is not on the frame where the Game MC is at (Game MC contains Card MC.) I also put trace actions on various frames on that timeline (for Card MC) and none was invoked. I have also tried to set the sound to "event" or "start". It made no difference.

  • How to link from a movie clip to main timeline?

    My problem first appeared very simple, but I have spent a
    while on it and can't think how to solve it. I must say that I am
    very much an amateur in designing in Flash and ActionScript.
    I created a movie clip containing an embedded video and a
    sound clip. In the main timeline I inserted the movie clip into a
    keyframe. When I found the movie clip didn't play, I discovered
    that the only way of making it play was to place a Stop action in
    the keyframe of the movie clip, and also set the whole movie to
    loop. The Stop action stopped the whole movie from looping, but
    instead made the movie clip loop. If the keyframe is on frame 456,
    how do I make it advance onto frame 457 once the movie clip has
    finished running?
    I've tried various ways around the problem, including placing
    a button inside the movie clip to Go to and Play frame 457, but
    instead it plays frame 457 in the movie clip.
    Can anyone help me with this please?

    Hello,
    You need to tell flash the "target" you want to play. If not
    specified
    it will think it is the target you are calling from which in
    your case
    is the movie clip.
    So to go back and play one level up would be:
    _parent.gotoAndPlay(457);
    If the movie clip was inside another movie clip then it would
    be:
    _parent._parent.gotoAndPlay(457);
    or you can just referent the root of the movie directly:
    _root.gotoAndPlay(457);
    Search the help file for timeline target and you should find
    more about it.
    Incubusguy wrote:
    > My problem first appeared very simple, but I have spent
    a while on it and can't
    > think how to solve it. I must say that I am very much an
    amateur in designing
    > in Flash and ActionScript.
    >
    > I created a movie clip containing an embedded video and
    a sound clip. In the
    > main timeline I inserted the movie clip into a keyframe.
    When I found the movie
    > clip didn't play, I discovered that the only way of
    making it play was to place
    > a Stop action in the keyframe of the movie clip, and
    also set the whole movie
    > to loop. The Stop action stopped the whole movie from
    looping, but instead made
    > the movie clip loop. If the keyframe is on frame 456,
    how do I make it advance
    > onto frame 457 once the movie clip has finished running?
    >
    > I've tried various ways around the problem, including
    placing a button inside
    > the movie clip to Go to and Play frame 457, but instead
    it plays frame 457 in
    > the movie clip.
    >
    > Can anyone help me with this please?
    >
    >

  • No sound from some audio clips suddenly

    Made a 55min movie from multiple video clips and narrated with several audio recordings and added music tracks as well, suddenly some audio clips after the first 30 mins show up blank, when viewing audio waves and their volumes are set fine. Other audio clisp in between works fine thou.
    Found this after having exported and shared to iDVD, Audio wave files and Media files seems fine in the project folder/content. what happened and have could I possible recap output from these clips again?
    BTW HD ***** on sound facility and sometimes disstores sounds during playback when a project gets too large, sometime after saving project and emptying trash, it might work again for a while
    Googled around for few days now with out any solutions, any hints?

    Hi stefw,
    I assume you've already done the following:
    (1) Make sure the audio checkbox is selected for the track you want to hear. The audio checkbox is to the right of each track in the timeline viewer.
    (2) If the audio checkbox is selected, then choose View > Show Clip Volume Levels and see if the audio levels for the tracks are set to a level that can be heard"
    If so, this is what I'd try.....with your project open, start an new, empty project. Go to the original project and copy one of the clips (highlight it and then FILE....COPY.) Go to the other project and click in the second line of the timeline and click FILE...PASTE. Make sure the audio checkbox (on the far right) is selected for that line and attempt to play it in the new project. If it works, drag it back into your original project and try it from there.
    If that doesn't work, look for the. aiff files in the original project file in Finder (find the file, right click, choose "Show Package contents", then look in the media folder.) Drag that file into the new project and attempt to play it. If it works, drag it back into your original project and try it there.
    Hope it works out for you.

  • Using sound from one Movie in another one

    I have one animation movie and I want the sounds from that one on another version of the movie (another file). How can I export or copy these sounds?

    Share your Project using SHARE/EXPORT USING QUICKTIME... and choose an audio only codec like AIFF. This will give you a sound file that you can use elsewhere.

  • Loading a pic from a Movie Clip

    I currently have a site that loads pics by rolling over a
    button. I would like to change the buttons to Movie Clips but still
    be able to load the pics.
    In the root of my Flash file I have this action script:
    var myMCL:MovieClipLoader = new MovieClipLoader();
    Then on each button I have this script which loads the pic
    into an empty MovieClip called "container":
    on (rollOver) {
    myMCL.loadClip("images/image01.jpg", "container");
    This script doesn't seem to work when I apply it to a
    MovieClip that I want to fucntion like a button. I need it to be a
    MovieClip because there is other stuff I want the MC to do that a
    button can't do.
    Any ideas?

    I thought that might be the problem but I;m not sure where to
    put "this._parent.container"
    I tried this with no luck:
    on (rollOver) {
    myMCL.loadClip("images/image01.jpg",
    "this._parent.container");

Maybe you are looking for