Flash CS3 Animation and Audio not timed properly when packaged.

I am trying to create a simulation with audio, mouse movement, mouse clicks and screen changes. When I play the movie in Flash, the animation and the audio are timed properly. However, when I package it, the animation falls behind the audio. I am using wavs for the audio - I've tried mp3s also.
I have a screen displayed with a mouse. The audio and a highlight indicate the next step, then the mouse moves and clicks the desired area - with a audio mouse click. The first "click" sound is pretty close to where it is supposed to be, but as the movie plays, it begins to occur earlier and earlier. So much so, that the audio starts to begin prior to animation is complete later in the move. This is not a real long demonstration, only about 1100 frames, but I notice the problem around frame 180.
Any suggestions?

IE stinks. There's a huge performance difference when playing
SWFs in
Firefox and IE. We have seen SWFs reach 100fps in FF 3.0
while the same SWF
taps out at around 40fps in the latest IE browser. It's not
Flash, it is the
browser.
Adobe Certified Expert
www.keyframer.com
www.mudbubble.com
(if you want to email me, don't look)
"AMK4" <[email protected]> wrote in message
news:gfk9ls$6kf$[email protected]..
> This has me baffled to no end. I have a flash file
that's behaving rather
> odd.
> Even the original author doesn't have an answer. I work
on a WinXP system,
> if
> that matters. When I test the movie within Flash CS3, it
works as
> expected: the
> animations ends as the audio fades out. When I publish
it, and I open it
> up in
> Firefox, it works as expected. But that's where it ends.
On the same
> machine,
> if I view it in Internet Explorer, the animation takes
longer - it plays
> slower. Consequently the audio ends before the animation
is done.
>
> I've tried multiple WinXP machines, they all do the same
thing. In Firefox
> it
> works as expected and the same way as previewed within
Flash CS3. But,
> viewing
> it in IE, and the animation plays longer.
>
> Wanna see it for yourself? Look at the original author's
page:
>
http://www.flashmo.com/preview/flashmo_137_intro/
>
> Open it up in IE and Firefox, side by side if you can.
Does it play
> correctly
> in both (animation ends as the music fades) ?
>
> Suggestions anyone?
>

Similar Messages

  • Buddies icon animation and audio not received.

    I know very little about IM. Only use it to contact a couple of friends. One has an animated icon with audio, I only see the stationary version and no sound. Also, my friend does not see my iChat icon at all. Friend has an AIM account via AOL paid subscription. Any comments would be apprecitated. Thanks.

    Hi MFen
    I would ask what Instant Messaging application everyone is using ?
    iChat will show the Animated Buddy icons from other applications such as AIM on a PC.
    (It can be made to show it's own animated icons from another ichat user with a Add-On)
    If you mean the Video and Audio green icons where some of them appeared "Stacked" that can be down to the capabilities of the Buddy.
    If no camera but has Mic and can A/V chat then it is a Audio (telephone) icon.
    Camera and ability to A/Vchat is a Video cam.
    iChat uses that have ichat 3 and can join a multichat have the stacked icons.
    A PC using AIM will only show single icons as they can not join multichats.
    Hope this helps.
    6:27 PM Wednesday; February 7, 2007

  • Animation and Audio not in time

    Hello all,
    I am a new user of Adobe Captivate 5 and creating my first E-Learning tool with the programm.
    In the working mode I combined all animations from PowerPoint to the voice-over adio-files and it is working great. But when publishing my project all animations are delayed and they are not anymore combined with the voice-over.
    If I change the time for the animation in PowerPoint excatly at the point where the adio starts ist is still not correct. So the time PowerPoint and the published version ist not the same.
    I am publishing the project in Flashplayer 10 in HTML.
    Thank you for your help!

    See page 18 of the user guide: http://help.adobe.com/en_US/Presenter/7.0/presenter7.0_user_guide.pdf
    JP

  • Animation and Audio not working

    I'm having trouble making my Presenter presentations act like the original PPT.  PowerPoint presentation has audio and animation that work fine in the slideshow mode.  If I publish it in Presenter, no audio comes over automatically. I tried the Import from Presentation option which brought the audio in but when I publish, the animation that had been synched with the audio in PPT is gone.  What am I doing wrong?
    (Using Office 2007)

    See page 18 of the user guide: http://help.adobe.com/en_US/Presenter/7.0/presenter7.0_user_guide.pdf
    JP

  • Flip Card Animation is not working properly when Button's PointOver State remain Activated.

     I am facing problems with flip car animation which is not working properly when its mouse point over state remains activated but it works perfect when its tapped two times and instantly change pointer position. Kindly Help me out as soon as possible.
    Code is here:
    Xaml:
    <Image Name="imgCapital" RenderTransformOrigin=".5,.5" Tag="1" Tapped="imgCapital_Tapped">
    <Image.Projection>
    <PlaneProjection RotationY="0"/>
    </Image.Projection>
    </Image>
    <Image Name="imgSmall" RenderTransformOrigin=".5,.5" Tag="2" Opacity="1" Tapped="imgSmall_Tapped">
    <Image.Projection>
    <PlaneProjection RotationY="-90"/>
    </Image.Projection>
    </Image>
    Storyboard:
    <Storyboard x:Name="FlipOpen">
    <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationY)" Storyboard.TargetName="imgCapital">
    <EasingDoubleKeyFrame KeyTime="0:0:0" Value="0"/>
    <EasingDoubleKeyFrame KeyTime="0:0:0.4" Value="90"/>
    </DoubleAnimationUsingKeyFrames>
    <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationY)" Storyboard.TargetName="imgSmall">
    <EasingDoubleKeyFrame KeyTime="0:0:0.4" Value="-90"/>
    <EasingDoubleKeyFrame KeyTime="0:0:0.8" Value="0"/>
    </DoubleAnimationUsingKeyFrames>
    </Storyboard>
    <Storyboard x:Name="FlipClose">
    <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationY)" Storyboard.TargetName="imgCapital">
    <SplineDoubleKeyFrame KeyTime="0:0:0.4" Value="90"/>
    <SplineDoubleKeyFrame KeyTime="0:0:0.8" Value="0"/>
    </DoubleAnimationUsingKeyFrames>
    <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationY)" Storyboard.TargetName="imgSmall">
    <SplineDoubleKeyFrame KeyTime="0:0:0" Value="0"/>
    <SplineDoubleKeyFrame KeyTime="0:0:0.4" Value="-90"/>
    </DoubleAnimationUsingKeyFrames>
    </Storyboard>

    Actually i simply want flip card animation which is not working here in my code. When i tapped button to invoke animation its behavior not exactly flipping.  Its one side work properly but other collapsed suddenly not rotate if i keep mouse right at
    the button, but if i change mouse pointer at that very time after tapping it works properly. Mouse Pointer Over mean screen points where i tapped.
    Triggered Function is here:
      private void btnChangCase_Tapped(object sender, TappedRoutedEventArgs e)
                if(isCaseChanged==false)
                    isCaseChanged = true;
                    FlipOpen.Begin();
                else if(isCaseChanged==true)
                    isCaseChanged = false;
                    FlipClose.Begin();

  • Clip inspector in imovie not working properly - when I select a picture - and select clip adjustment it tells me that I need to select one or more clips to view Inspector tools and in a clip the audio adjustment only shows a speaker? help

    Clip inspector in imovie not working properly - when I select a picture (in project library) - and select clip adjustment it tells me that I need to select one or more clips to view Inspector tools and when I select a movie clip and then click on audio adjustments the audio adjustment appears as a speaker icon and I don't know how to get to the various audio options? It was working fine one minute and then I seemed to lose the functionality. Also editing a photo in a photo or getting rid of ken burns effect etc does not seem to work. help

    Can anyone shed any light on this as I am having the same problem? One minute it works fine, the next you get the error message above.
    Many thanks.

  • Flash cs3, cs4 and cs5 always not responding in windows7

    I have installed adobe flash cs3, cs4 and cs5 in windows 7, but it is always not responding when I run them. While they are running normally when running on my WindowsXP. I had to reinstall them several times, the result remains the same. Is there any problem in my windows 7 ? can someone help me? thanx.

    Problem is not in your windows 7 OS, since i was working CS4 and now i m working with CS5 in windows 7 only. And i feel more comfort with this new OS. May be you hardware configuration might not be support to new technology like windows 7 and Flash CS5. Beca it is need high hardward configuration

  • HT201210 AUDIO NOT WORKING PROPERLY AFTER INSTALLED IOS7

    After installed ios 7
    photos not able to see fully
    audio not working properly.... [no treble, no depth in sound, very low soung even the volume is full]
    get strucks while playing games

    This board is full of people that are update crazy...
    even when they have perfectly good working systems.
    i know i thought well it's just a security update not a major update.
    Best advice... whenever updating the OS, unplug all
    firewire devices.
    will take note of that from now on.
    Was this auto-update? Try downloading the file and
    running the update again with all firewire devices
    unplugged.
    While the 828 is disconnected perform the factory
    reset
    again.
    Disconnect the firewire cable from the 828mkII
    -Press the Setup knob
    -Turn the Setup knob all the way to the right
    -Press the Select knob
    -Press the Value knob
    -Power off the interface and plug the firewire cable
    back
    in
    -Power the interface back on
    i have the original 828 not mark 2, so no reset i know of, just power on off.
    After the Mac updates... reboot and plugin the 828,
    see if that doesn't get you going.
    pancenter-
    cheers pancenter, i'll give it a whirl updating without the interface plugged in. thanks for all your help.

  • Flash cs3 "Motion tweening will not occur on layers with ungrouped..."

    I am getting the error message: flash cs3 "Motion tweening will not occur on layers with ungrouped shapes or on layers with more than one group or symbol"
    I have only one symbol in the layer, a graphic.
    Does anyone know how I can correct the "problem"?
    Thanks in advance.
    karen.

    as the above poster mentioned I am guessing you have more than one object on that layer. you may have created a symbol from a shape and not selected the stroke.. that is pretty common.
    to verify what is on a particular keyframe do a "select all" cntrl-a or cmd-a. maybe you will see more than one item selected.
    look at the properties panel. if you have only one thing it will note the symbol or it will say "mixed".
    perform this test in the first and last keyframe.

  • Hello My ipads Power button is not working properly when I press it once it shows option to turn off instead of locking and some other display problems like it suddenly lockes down or display disappears ...Please help. Thank You

    Hello My ipads Power button is not working properly when I press it once it shows option to turn off instead of locking and some other display problems like it suddenly lockes down or display disappears ...Please help. Thank You

    Thanks for that information!
    I'm sure I will be calling AppleCare, but the problem is, they charge for the phone calls don't they? Because I don't have money to be spending to be on the phone with a support service.
    In other things, it seemed like the only time my MacBook was working was when I had Snow Leopard without the 10.6.8 update download that was supposed to be done to prepare for OS X Lion.
    When I look at the information of my HD it says that I have 10.6.8 but that was the install that it claimed to have failed and caused me to restart resulting in all of the repeated problems.
    Also, because my computer is currently down, and I've lost all files how would that effect the use of my iPhone? Because if it doesn't get fixed by the time OS 5 is released, how would I be able to upgrade?!

  • My macbook pro is not working properly , when is turned on after then show apple logo and continue show this or nothing.

    my macbook pro is not working properly , when is turned on after then show apple logo and continue show this or nothing

    Gray, Blue or White screen at boot, w/spinner/progress bar

  • Despite my best efforts, I am unable to remove iTunes 11.1.4 from my PC, this being made necessary because the original installation had a flaw and did not load properly. Effor to use the control panel, deleting dll. files, etc. all failed. iTune out??

    Despite my best efforts, I am unable to remove iTunes 11.1.4 from my PC, this being made necessary because the original installation had a flaw and did not load properly. Effor to use the control panel, deleting dll. files, etc. all failed. And, of course, on startup, a window opens with the error and tells me find QTMovie.dll and delete it because this may be the source of the hangup. Also, in trying to delete iTunes, I get the additional message that I must get approval from the System Administrator to take this action. I am the System Administrator.
    Any ideas would be welcomed.
    Thank you.
    James
    <E-mail Edited by Host>

    Thank you for asking this question.  I'm having the same issues. 
    Liz

  • How to increase the icons of creative cloude ? The icons permanecm very small and can not see properly.

    How to increase the icons of creative cloude ? The icons permanecm very small and can not see properly.

    Hold down Control and scroll down with the mouse or trackpad.
    Regards,
    Captfred
    That's the screen zoom function activated by CNTL scroll up to zoom and CNTL-Scroll down to unzoom.

  • I had photoshop elements 8 installed on my previous computer and it did not work properly when it came to sizing  photos for a website I was adding to.  I now have a new computer which runs windows 7.  Is it worth installing it again on my new computer?

    I had photoshop elements 8 installed on my previous computer and it did not work properly when it came to sizing  photos for a website I was adding to.  I now have a new computer which runs windows 7.  Is it worth installing photoshop elements 8 again on my new computer or will it be a waste of time?

    I have PSEv.8 on my computer running WINDOWS 7. It works perfectly..
    Perhaps you need help with saving files for web use.. Will be pleased to assist you when you get everything set up.

  • TS3003 Installed QuickTime7 from Snow Leopard installation disc and still can't view videos on iPhoto. A box appeared saying "you have installed Mac OS X software older than your current version of Mac OS X and may not work properly."  Now what?

    Installed QuickTime7 from Snow Leopard 10.6.8 installation disc and still can't view videos on iPhoto. A box appeared saying "you have installed Mac OS X software older than your current version of Mac OS X and may not work properly."  Now what?

    Download and install the latest QuickTime Player for Snow Leopard > http://support.apple.com/kb/DL923

Maybe you are looking for