Need help to synchronize video clips and main audio

I have 20 videos (symbols of the library) from about 400-800 views each. None has its own audio. I want to play in sequence on the main timeline, synchronized to an audio clip that runs along the timeline. The problem is that I can not understand how to stop the timeline to allow the clips to play uninterrupted audio.

At the present time, I have clips play in sequence, I like: each clip on the timeline has a label and occupies 10 images, just so that I can read the labels. The last frame of each clip on the main timeline, I have a stop() on an Actions layer command. The last frame of each MC, I have a command that looks like _root.gotoAndPlay ("nextLabelName").

The problem is the audio on the main timeline plays only for these 10 images, then stops to let each MC to play, which is exactly what I told it to do. How can I get audio from the main to continue scenario to play and keep that it synced to the sequence of MCs? Perhaps, I go about it the wrong way.

OK, I think I've answered my own question. After some more research in some newsgroups, I found a useful code. Here's what I did, in case someone else has this problem:

(1) kept just as it was, but removed the audio clip on the main timeline.
(2) in the library, I went in the binding of the audio settings and he gave a C:\myaudio identifier.
(3) created a new MC with 1 single framework, in which I inserted this code:
SND = new Sound (this);
snd.attachSound ("C:\myaudio");
SND. Start();
(4) in the main timeline, I inserted a keyframe, where I wanted the audio to start and drag the new MC to the editing table, off the stage.

Now the clips play in sequence, the audio plays all the way through, and everything is synchronized. You would think there would be a simpler way to do it... but you would be wrong.

Tags: Adobe Animate

Similar Questions

  • Need help with my video! Rhapsody can't find my Clip.

    I tried to reinstall the Rhapsody software and formatting my Clip and those which do not solve my problem.  I plug my video on usb and I find the clip in 'my computer '.  I opened Rhapsody with the Clip into the usb port, and the Clip does not appear in sources more.  The Clip used to work 100% good, but no more.  I cancelled the forceps to try to resolve the problem.  So the real problem is that I cancelled the clamp to fix the problem and now I can not find out how to get the Clip appears again in Rhapsody.  Under 'my account' Rhapsody says "no authorized device.  So I need help to get my Clip is displayed in 'my devices allowed' so that I can reactive it.  Any ideas?  I run Vista and also tried to run Rhapsody as an administrator.  Thank you!

    A few simple steps should get your device to communicate in MTP mode again.  It is the most common source of problems with Rhapsody.

    First of all, verify that Rhapsody is running correctly.  Open the 4 Rhapsody client and login.  Select a piece of music in the music guide and see if it reads normally.

    Connect the clamp and take a look at the sources of pand in the upper left corner.  How the Clip appears?

    If it lists as E: SANSA CLIP all in capital letters, with a drive letter, the device is in MSC mode and cannot accept Rhapsody subscription titles.  It can accept purchased securities, that they contain no DRM as MP3 files.  Unplug the unit and switch to MTP mode manually:

    Settings > USB Mode > MTP.

    If the device appears as a Sansa Clip 4 GB for example, with caps and smalls, without a drive letter, Windows recognizes the device as a media device.

    If Rhapsody sees the devivce as shown above, try to right click on the device and select allow.  Transfers should be possible.

    If it does not appear as a MTP device, leave the connected device (after manually select MTP mode) and go to the Device Manager.  [Windows key] + [pause button], then Hardware tab > Device Manager.

    Look for the yellow triangle.  The Clip appears in the portable device, or Bus USB controllers tree.  Select Uninstall (not turn off!), unplug, restart the computer and after it restarts, try to connect again from the PSG.

    Bob

  • Helps editing of video clips in imovie

    Have an imported video but trying to edit and cut the clips that I am only able to select the full video to put down in my film, not just the clip I want to choose.  Helps editing of video clips in imovie

    < re-titled by host >

    have an imported video but trying to edit and cut the clips that I am only able to select the full video to put down in my film, not just the clip I want to choose.

    This is a new and improved feature in iMovie. You must hold down the 'R' key while clicking on the part of the item you want.  By default, the full clip will be added to the time line.

    See notes to iMovie version 10.1.2:

  • Need help with Exchange 2010 Diag and implementation

    I NEED HELP FOR EXCHANGE 2010 DAG AND THE IMPLEMENTATION THAT CAN HELP-IM I IN THE RIGHT SUPPORT GROUP?

    Hello HectorLopez_790,

    Microsoft Communities is for consumer issues with Windows 8, Windows 7, Windows Vista and Windows XP. Your question with Exchange would be better supported in the TechNet forums.
    Click here for a link to transfer your question in the forums of Exchange.

    Thank you

    Marilyn

  • Need help! Multiple video splices both?

    The guys of sup - sorry if this has been covered, done a brief search and its quite hard to word what I need help & hard to find anything whatsoever thereon! (if it is still possible, it is).

    Basically, I edit videos & shoot them down in highlight reels - my clients send me the exact hours of what they want out.

    Is it possible to enter at the time of parts I want to cut out all at once? I know that you can enter a time in the timeline, but I still have to do this for each clip!

    Here is an example, if you don't quite understand what I mean:

    I have a video that is long 01:00:00:00. My client has watched the video itself and noted whenever he wants to cut down, for example 12:11mins - 12:21mins, 13:14mins - 13:31mins etc. I have to do it manually every day, I know that this may sound lazy, but when I about 30 + times to cut and to manually select each that it takes forever!

    I hope someone can help, really appreciate it.

    Thank you.

    Not possible, you should make a one slice at a time.

  • Noob help: release of video Clips with buttons

    Hi guys,.

    I take an intro Flash and Action Script and for my last class, I need to create a portfolio that contains 5 unique buttons that trigger the 5 unique video clips. I have a hard time with this. I've been able to trigger the 1st clip with the first button (although I can't stop), but I can not trigger all the other films with any other button.

    Here is my code:

    Stop();
    chuck1_btn.addEventListener (MouseEvent.CLICK, regarderMovie);

    function playMovie(event:MouseEvent):void

    {
    spaceship_mc. Play();
    }

    chuck2_btn.addEventListener (MouseEvent.Click, playSaucers);


    function playSaucers(event:MouseEvent):void
    {
    saucers_mc. Play();
    }

    Nothing happens when I click on chuck2_btn when I test the movie. I think I need to create a variable or a class, but I'm not sure. I am a super noob with this stuff. Any thoughts? Thank you!

    Rick

    You should learn how to use the help documentation to find answers as how to use the visible property.  For the code you have shown earlier, here is what you can try setting 1 to replace.

    Stop();

    spaceship_mc. Visible = false;

    saucers_mc. Visible = false;

    slideshow_mc. Visible = false;

    chuck1_btn.addEventListener (MouseEvent.CLICK, regarderMovie);

    function playMovie(event:MouseEvent):void

    {

    spaceship_mc. Visible = true;

    saucers_mc. Visible = false;

    slideshow_mc. Visible = false;
    spaceship_mc. Play();
    }

    chuck2_btn.addEventListener (MouseEvent.Click, playSaucers);

    function playSaucers(event:MouseEvent):void
    {

    spaceship_mc. Visible = false;

    saucers_mc. Visible = true;

    slideshow_mc. Visible = false;
    saucers_mc. Play();
    }

    etc...

    It could be refined, as with a function that hides everything and use it every time before you do that you want to show visible.  You may find it necessary to include saying the films of gotoAndStop (1) as well.

    It's about as generous as I'll get.  It is important that you learn things, and give you a solution won't help to do so.

  • White letters/name of the file is displayed in the lower left side of the video clip and photo in my Windows Movie Maker slideshow

    This only happens to a music video and a photo.  I removed the clips and replace them again and it still happens.  I can't find a way to remove the white titles from the images.  Help?  I don't know if I have Vista or XP...

    The same letters seem if you watch the video in Windows Media Player?

    In Movie Maker - timeline view... Look at the track "Title Overlay"... If there is
    the unwanted titles here... right click / delete them.

  • Need help to add videos to my rocket

    I got it for Christmas. I know how to add all my songs and pictures, but I can't add videos to it. Whenever I add a video in the video folder, I look on my rocket and he said either "Format file not supported" or it just does not appear on my rocket. Any help? I know that the video format is MPEG-4, but I need help to really watch my videos!

    You must use Sansa Media Converter. Even if its a MP4 you use MSC. It's the only way right now. The converter is avalible here is at the top of the page under the downloads section

  • Dear community, I need help to change my email and rescue security question

    I need help to change my email of relief. First of all, I don't remember my Security Question. Second, when I click the reset security question and no email has been send to my email of relief. That's why I need help with these two questions

    Unless the email in a spam filter, you have to ask Apple to reset your security questions. To do this, click here and choose a method; If this page does not list one for your country or if you are unable to call, complete and submit this form.

    (137729)

  • Need help, connect to the wifi and Panel set to work.

    Let me start by saying that I recently downloaded malware bytes and microsoft security essentials. Malware found 4 corrupted files. I deleted the and also received a warning that the files needed to restore. I restarted the computer and then I realized that the computer wouldn't connect to the Internet wirelessly. There is no any wifi connection possible. I tried to access the firewall via the Control Panel, but I received a message saying that something is misspelled, and I needed to check my spelling and try again. I can't access anything in the control panel. I then returned to malicious software and restored the files and I don't know if it restored. Again, I have no wireless connections and cannot use Control Panel. I did a restore there when I knew that nothing was wrong with her, but he says that there is no change for a week about a week ago. I need help!

    What are the 'properties' can you get not to?

    If you were not able to see something like this picture--> http://www.askdavetaylor.com/4-blog-pics/windows-system-properties.jpg

    or you have to this Properties dialog box, but the part of the circle includes all mention of the Service Pack,

    Then, it's probably time for you to go to a good independent store (place of type no BigBoxStoreUSA or geeksquad) computer repair.  If they think they can reinstall Windows, ask them to back up your data (files, photos, music) first.  Ask them to tell you the consequences of reinstalling Windows before they do.

  • My saved Windows Movie Maker Project open with video clips in the Audio editing panel and vice versa (NOT as it was created). Can I move them back where they belong?

    After days of the creation of a filmmaker 'project' I 'saved project' one last time, then reopen and publish a movie.  All my video Clips (phtotos) now appear in the Audio editing / music along the bottom with only a video clip standing in line of the video of this 'slide show' of 90 minutes.  Is it possible to move these clips to which they belong without having to recreate the whole project?

    What happens if you try to read the project in Movie Maker?

    Looks like your project .mswmm file is corrupt (starting
    Perhaps more than the best approach). The project can be as far
    too big and too complex to publish (save) with success as a
    video file.

    I suggest that you create several small projects
    and publish (save), each of them in the. WMV video format
    and then re-import the collection. To combine WMV files
    in a single movie.

    You can also import collection. Clips WMV to DVD
    Manufacturer and each clip, would have become a scene (chapter)
    on the DVD.

    The following article is maybe worth a visit:

    Movie Maker - how to divide a project complex smaller?
    http://www.myvideoproblems.com/tutorials/MovieMaker/SplitComplexProject.htm

  • need help to install microsoft office and Student 2007 disc

    When I try to install it it rpet ' set up can not find Office.en-us/OfficeLR.cab browse to a valid installation source and then click ok. I need help I do not know which folder to look in

    Uninstall the 1 trial.

    http://support.Microsoft.com/kb/928218

    How to uninstall manually Office system 2007 if you cannot uninstall it by using the function "Add or Remove Programs".

    Office:

    http://www.Microsoft.com/Office/Community/en-us/flyoutoverview.mspx

    Office newsgroups

    http://www.Microsoft.com/Office/Community/en-us/default.mspx?DG=Microsoft.public.Office.misc&lang=en&CR=us

    Discussions of general issues of the Office.

    They will help you with your office questions when repost you in the Office discussion groups above.

    See you soon.

    Mick Murphy - Microsoft partner

  • Need help to reallocate the space and get rid of the double partitions?

    Can someone help me to reassign my data partition? I was trying to dual boot my computer with windows 8 and linux, but I failed miserably a year ago. After a month of research, I managed to get into my windows installation; However, all the data is irrelevant. I'm pretty sure that I moved my EFI boot files... something like that is called... I moved it in this space of 22 GB which is WAYYYYYYYYYY to much space for these files, which require that... ? 1000 mb or more? Anyway. I need help this hot mess of fixing. Thanks for any help. I really appreciate it. I know virtually nothing about it. Perhaps someone can guide me on how to fix everything by using linux? If there is there any program that can solve this too, that would be great. A free solution would be appreciated. Thank you all.

    Hello

    Thank you for visiting Microsoft Community.

    According to the description, I understand that you want to delete the partitions created on your PC under Windows 8 double. I will certainly help you to question.

    I suggest you refer to the suggestion made by Yann replied on 9 April 2015 from the link below:

    http://answers.Microsoft.com/en-us/Windows/Forum/windows8_1-performance/how-do-i-rectify-this-confusion-in-disk-management/afc2a41e-ef1c-4880-b4eb-05b960a6d8c3

    Hope this information helps

    Meet us with the State of the question.

    Sincerely,

    Ankit Rajput

  • Need help with the OSB Assign and replace the

    I have a proxy service that receives the SOAP message:

    " < = xmlns:soapenv soapenv:Envelope ' http://schemas.xmlsoap.org/SOAP/envelope/ "xmlns:SOAP - ENC =" " http://schemas.xmlsoap.org/SOAP/encoding/ "container =" " http://www.w3.org/1999/XMLSchema ">

    " < = xmlns:soapenv soapenv:Header ' http://schemas.xmlsoap.org/SOAP/envelope/ ">

    < / soapenv:Header >

    < soapenv:Body >

    " < pidx:OrderChange pidx:transactionPurposeIndicator = 'Replace' xmlns:pidx = ' http://www.API.org/pidXML "xmlns =" http://www.API.org/pidXML "" xmlns: xsi = " http://www.w3.org/2001/XMLSchema-instance "xsi:schemaLocation="C:\shareIt\OrderChange_1-2.xsd" > ""

    ...

    < / pidx:OrderChange >

    " < = Xmlns:ocp DeliveryInformation ' http://www.digitaloilfield.com/OCP ">

    ...

    < / DeliveryInformation >

    < / soapenv:Body >

    < / soapenv:Envelope >

    I need to take the OrderChange element and place it in a SOAP body and the DeliveryInformation element and place it in the SOAP of the same SOAP message header.

    The SOAP message is then sent to a business service that makes an HTTP POST of the SOAP XML.

    I created the service of the company and he sent some data test SOAP and it works very well, but cannot create a bridge between the Proxy and the Business Service.

    In the stream of messages of Proxy I tried to do an assignment in a routing. I tried to do the following:

    1. an XQuery query transform to generate the XML SOAP just described

    2. not the entitlement where the "Expression" is the transformation and the Variable is a variable based on a schema for SOAP.

    I can see that the company is trying to be invoked, but the SOAP data does not have to be formatted or passed.

    It is the right approach or is their a better way of

    1. create the SOAP wrapped XML

    2. call the Business Service.

    Any suggestions are appreciated. I can provide more detail if necessary.

    Kind regards.

    Thank you Vlad...

    I think I'm getting in that direction now. Just do some debugging.

    Appreciate the input. I will update with final results.

    Again, your help is greatly appreciated.

    Kind regards.

  • Need help developing 'a server scenario' - and MOA &amp; Stuff

    Hi all!

    I need help with the following scenario.

    I have several machines to virtualize via the DRAC or ILO, and I have to keep the local interation in a minimum possible.

    In some sites, I have only one server, do I need to create a virtual computer on a USB drive, install ESXi on this same machine and add to the ESXi virtual machine create earlier.

    I tried to use a CD multiboot I've done with the installer ESXi and MOA on the same disk, to eventually reach:
    1. create a VM with MOA (Windows 2008 R2) cold start
    2 - test this virtual machine with VMware Player on MOA
    3 - reboot
    4. install ESXi
    5 - create a VM 'work' of vsphere client (from my desktop over a wide AREA network)
    6 - start MOA on this work «VM»
    7 use moa to add my VM created in step 1 to the new ESXi


    I can't get to step 5, I can't find a way to import the virtual machine to ESXi, I tried adding converter 5 MOA Build, but no dice. Above all I do not see my ESXi host, or I get another error when you try to run the converter 5 4 or 3, the converter to connect on a Vserver, witch, I have not at this time here.

    So any who has any light for me or another possible scenario to reach my goal?

    Of course - there are several ways to do so.

    You say you have Workstation on your generation? -Then, you also have vmware-vdiskmanager.
    With vdiskmanager you can import VMDK in ESXi.

    Other options will need to use WinSCP to transfer the virtual machine - vmkfstools can be used if you are generating MOA with NFS support.

    Recently, I found a way to use the latest Converterversions so...

    If you like to meet via Skype and we know which option is best for your users

Maybe you are looking for

  • sierraOS performance issue with 2 external displays

    I have a mid 2013 15 inch rmbp with an i7 2.4 ghz and 650 m from nvidia. I've always used my mac connected to 2 external monitors and everything was always fine. Fans occasionally happen as expected for more demanding applications. Since the installa

  • Satellite P750 - guaranteed date wrong

    Hello world! I just got a message from Tempro saying that my warranty will expire soon. The thing is that I bought my laptop on Amazon.de on February 3, 2013. Looking at the date recorded, it is said 2012. This is completely wrong and I know that I h

  • gated two error of counter-200452 edge

    Hello Forum, As I wrote earlier, I am implementing a measure of separation of two edges that can be blocked. In an updated version of an earlier program, I tried to use the node property relaxing break. However, I can't work and still receive a 20045

  • I'm stuck on my account and I forgot the information Please Help!

    Microsoft it please help me my name is Sam, I've had my X - box live account for 3 years now and I took a friend's House and I wanted to sign on my account but the Windows live ID and password did not work. I went home and I wanted to put a password

  • How to install the SIM card in the modem GSM G TravelMate 8473?

    I bought the Acer Travelmate 8473 G laptop computer 2434G50Mnkk that comes with the modem Huawei GSM. I can't find a clue on where you want to insert a SIM card. Could someone help me with this information?