Imported AS3 swf animation not looping

I have tried all of the settings in Captivate 5.5 but can't keep my animation looping and not sure why.
I've imported an AS3 swf animation (just a simple movieclip animation of a blinking line) into Captivate 5.5. I placed the animation at the end of the timeline on the slide, and want the blinking line to stay there and continue to blink (i.e., animate) even after the slide has come to the end of the timeline.
I've tried everything I can think of. I assumed that checking the "Loop" setting in Captivate for the animation would do it, but it seems to have no effect.
I am pretty sure what is happening is that the click box on the Cp slide is forcing the animation to pause. In other words, the imported animation's timeline is being forced to pause too. Is there a way to stop this?
Any ideas?

Hi there
Try inserting a Click Box that pauses the slide about half a second before the end of the animation on the Timeline.
Cheers... Rick
Helpful and Handy Links
Captivate Wish Form/Bug Reporting Form
Adobe Certified Captivate Training
SorcerStone Blog
Captivate eBooks

Similar Messages

  • Swf does not loop

    So I have this AS3 animation, no AS, just timeline tween stuff. When I load it into Captivate, it will not loop. Yes, of course I clicked the loop property.
    I also tried the Synchronize with project, and every combination of display time settings.
    The animation runs until the frame time is over, then it stops, no loop.
    Anybody run into this problem before?
    Thanks

    Hi there
    You need to insert the animation into a MovieClip. Then insert the MovieClip into the timeline.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Problem importing Flash .swf animation

    When I tried to import a Flash CS4 animation into captivate,
    i get a message saying something about "actionscript references
    root" and the animation might not play back correctly. When i
    publish the captivate project, the animation just loops
    continously. Any ways around this?

    > When I tried to import a Flash CS4 animation into
    captivate, i get a
    > message
    > saying something about "actionscript references root"
    and the animation
    > might
    > not play back correctly. When i publish the captivate
    project, the
    > animation
    > just loops continously. Any ways around this?
    >
    Try fixing the FLA doesn't reference root. Also make sure the
    Loop option is
    not selected in FLA options.
    Steve
    http://twitter.com/Stevehoward999
    Adobe Community Expert: eLearning, Mobile and Devices
    European eLearning Summit - EeLS
    Adobe-sponsored eLearning conference.
    http://www.elearningsummit.eu

  • Successfully imported external swf, can not put it into movie clip

    Hello all,
    I have started learning AS3 and gradually getting used to, trying to put external swf into movie clip.
    Successfully imported target swf and put into stage, when I publish this I see target swf is playing.
    import flash.display.MovieClip;
    var BGLoader:Loader = new Loader();
    var BGurl:URLRequest = new URLRequest("HomeBG.swf");
    BGLoader.load(BGurl);
    BGLoader.y = 0;
    BGLoader.x = 0;
    addChild(BGLoader);
    As next step I want to put this swf into movie clip and get more control, but when I publish bellow only I see is empty background, without any errors.
    import flash.display.MovieClip;
    var BGLoader:Loader = new Loader();
    var BGurl:URLRequest = new URLRequest("HomeBG.swf");
    BGLoader.load(BGurl);
    BGLoader.y = 0;
    BGLoader.x = 0;
    //addChild(BGLoader);
    var animMC = MovieClip(BGLoader.content).getChildAt(0) as MovieClip;
    addChild(animMC);
    Is anything missing?
    Any help would be appreciated, thanks.

    You can only access Loader.content after Load completed successfully.
    Try this,
    import flash.events.Event;
    var BGLoader:Loader = new Loader();
    var BGurl:URLRequest = new URLRequest("HomeBG.swf");
    BGLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler);
    BGLoader.load(BGurl);
    BGLoader.y = 0;
    BGLoader.x = 0;
    //addChild(BGLoader);
    var animMC:MovieClip;
    function completeHandler(event:Event)
         animMC = event.currentTarget.content;
         addChild(animMC);

  • Frame by frame animation not looping

    Hello,
    This seems so simple but it's not working - I have two frames I want to continuously loop, they are of a person walking. I have put sym.play(0); at the end of the symbol timeline, but it is not looping. The sym.play(0); command is definitely working as I tested it with another transition in the same symbol, and this did loop. Can you not loop frame by frame animation?
    Anyone got any ideas?
    Cheers

    Hi Darrell
    Thanks for your reply, sorry can't really post it as it's a commercial project. They are 2 separate images, which become visible / hidden alternately to show each one after the other.
    I've sort of solved my problem by just repeating this manually for now but would still be interested to know if looping is possible - however appreciate this may be tricky without the file.
    Cheers
    Sarah

  • SWF animations not working properly when exported as PDF from InDesign

    I'm using InDesign CS5 and have created a document that I want to add interactivity and animations to. I've created buttons and page destionations, etc, which all work perfectly  when exported to a PDF but the simple animation that I wanted to include don't work. The animations have been created in InDesign then selection exported as a SWF file and then imported and placed in InDesign and then exported as an interactive PDF where the animations either don't work, haven't been picked up or don not work as they should. What am I doing wrong, how do I get the animations to work correctly?

    Try this tutorial:
    http://tv.adobe.com/watch/csinsider-design/indesign-creating-interactive-pdfs-with-page-tu rn-and-flash-animations/

  • Can't get my swf animations to loop

    I've created a flash animation (because the green arrow
    source isn't available) When I create a SWF file from it, and
    inport it into Captivate, it shows it looping in the preview
    window, but it doesn't loop when I preview the movie. I even added
    Actionscript to gotoandplay the first frame without any luck.
    Usually it plays one time, sometimes not at all. The behavior of
    the standard swfs is that they play constantly.

    Hi Jennifer
    In order to make your animations loop like the supplied
    animations do, you need to insert the animation into a Movie Clip.
    Then place the Movie Clip on the main Flash Timeline.
    Cheers... Rick

  • Importing a SWF file into AS3 FLA

    Hi,
    I've imported some SWF files I've built, under base class
    flash.display.MovieClip, into an AS3 code-only (Flash 9 on
    Macintosh) file. The visuals work fine when I call
    importedMovieClip.play(), but there's no sound.
    My current method is pretty simple:
    - Import the SWF into the library with classname
    ImportedMovieClip and base class of Movie Clip.
    - var importedMovieClip:ImportedMovieClip = new
    ImportedMovieClip();
    - theBackGroundSpite.addChildAt(importedMovieClip,
    theNightSky.numChildren);
    - importedMovieClip.play();
    I've done a workaround by building and importing separate
    soundtracks but since there's a fair bit of animated lip-synching I
    am not keen on having to do this twice and would prefer my imported
    SWF to bring its soundtrack with it.
    Obviously I am missing something ... How do I access the
    soundtrack within an imported SWF? Do I setup another SoundChannel
    using the imported MovieClip, or is there a MovieClip property I
    need to switch on, or is there some other method?
    Cheers
    Dougal

    You do not want to import an swf file.  You should either load it in dynamically or copy and paste its timeline into a movieclip symbol in your other file.

  • Issue with looping swf animation - conflicting settings

    I have a captivate project where I use a click box “stop” to inhibit the slide from moving to the next slide. (The click box set to no action, pause until user clicks.)
    This forces the user (using the player control) to click the “forward” button to advance to the next slide. This is by design.
    I have a Flash swf file embedded in one of the slides. This Flash file does not have a stop function. It is meant to continuously play (loop). I also have this Flash file set to loop in the Captivate project file.
    The problem is this…
    The click box “stop” (pause until user clicks) seems to be causing the SWF animation file to stop at the end of the slide. I want it to keep playing.
    Does anyone have any idea as to how to do this? Is it even possible since I am essentially giving conflicting commands?
    I suppose I could embed another SWF file (that would command the Captivate slide to stop) but I am unsure how to script the swf to pause the Captivate project. I could also use an animated gif, but I would like to use a swf file if possible.
    Any ideas?
    TPK

    Hi 1970Skylark,
    I still haven't been able to figure out the mechanism, but I have been able to determine something rather interesting (but mystifying).
    If I take and drop a SWF (set to loop) or animated gif (set to loop infinitely) directly on a Captivate slide, and include a click box "stop" like I usually do, then when the slide timeline reaches the "stop" both types of animations stop.
    However, if I first drop either of those animations and drop them in a PowerPoint slide, then import the slide into the Captivate project, then the animations continually play (even though the slide timeline might be at its end).
    I haven't a clue as to why importing the PowerPoint slide changes the play behaviors of the animation, but it does. The problem with this approach is that I want to keep the file size of the project files down. Importing PowerPoint slides seems to cause some serious file size increases that I want to avoid.
    TPK

  • Import a .swf 3D animation in Java

    Dear all,
    I would like to import an .swf 3D animation, which was built in Adobe Flash.
    Is it possible? Is any way to tranform this in Java like type? I have read about the JavaSWF2, I have downloaded some samples, but I cannot transform a .swf 3D animation into e.g. into Java Frames.
    Otherwise, do I have to build this 3D animation as a Java 3D object, writing code from scratch?
    I would like also to ask if anyone has constructed a 3D animation using JavaFX. I read very few things, but I did not find something related to 3D.
    I really appreciate any help.
    Regards.
    kalgik

    Change the frame rate of the animation after you remove the unwanted section.

  • SWF Animations Run at Startup - Before Reaching Imported Screen?

    Hello,
    I imported a simple swf animation into captivate. The animation runs smooothly enough. However, the problem is that the animation which is on screens 3 has already finished playing by the time the user reach that screen???
    I read some of the posts and could not find a solution to this preculiar.
    Does anyone have any input that might address this issue?
    I'm using Captivate 5 (eLearning Suite 2).
    Thank You
    iaustin

    Hello,
    Perhaps, If the only problem, is that the animation might loaad on a new window on --OPEN File or URL option, you can get around that by defining, that it should continue playing on the same window.
    Like this--
    Alternately you can assign an Advance Action to --
    Enable Object SWF on Slide Enter 3. And similarly keep it disabled on Slide --On Enter for Slide 1st and 2nd.
    Thanks,
    Anjaneai

  • Why are animated gifs not looping

    I can not understand why an animated gif set to loop twice does not loop at all. same file works in all other browsers.

    This page explains the settings for that:
    * http://kb.mozillazine.org/Firefox_:_Tips_:_Animated_Images

  • After the new project by importing PPT release, how to achieve the release of the demo mode SWF, but not now only Click to continue?

    After the new project by importing PPT release, how to achieve the release of the demo mode SWF, but not now only Click to continue?
    Note:Captivate 5.5
    Thks

    通过导入PPT新建的项目发布后,如何实现发布演示模式的SWF(自动播放),而不是交互模式的SWF(只能点击才能继续)?

  • Flash swf in browser does not loop no matter what - bug?

    Hello all!
    http://www.adslgr.com
    I have some banner ads in Flash (not mine, but from the
    advertisers who have years of experience with flash) in my website
    and unfortunately they do NOT loop no matter what I have tried!
    They stop just before they finish the first loop.
    When i load them on a browser locally they happily loop with
    no problem, but if they are served from a web server then they
    don't.
    I have tried the following and nothing worked:
    Removed the params in the object/embed tags
    Tried it on many different browsers *and computers* some of
    them are IE 6, IE 7, Firefox 2.0 etc
    Decompiled the SWF to .fla source and reviewd the code and
    found nothing wrong with actionscript
    Added the loop param according to adobe instructions
    And many more tests which mothing worked and it drives me
    crazy!!
    Please take a look at the website and you'll see this by
    yourself, all of them are NOT looping EXCEPT the last one in the
    bootm which has no problem at all.
    Please help me out...

    try this
    http://www.google.com/search?client=safari&rls=en&q=flash+html+parameters&ie=UTF-8&oe=UTF- 8
    loop
    I believe is a param..
    John Pattenden
    Screentime Media - Flash Tools since 1997
    http://www.screentime.com

  • SWF animation is not showing up in IE8

    I have test page : http://drupal-windwater/windWaterWidget
    With two flash banners which are clickable . On click they open bigger window with additional swf animation inside. In any case, neither small or expanded animation is showing up in IE8.
    It works perfect in all other browsers and even IE9.
    Using suggestions from these places didn't seam helping.
    http://stackoverflow.com/questions/6258258/swf-file-loading-in-firefox-but-not-ie
    http://stackoverflow.com/questions/5507265/flash-movie-not-showing-up-in-ie8-on-my-pc-can- someone-take-a-look
    Please advise
    thanx

    The link you provided for the test page fails.
    Browser issues normally result from embedding code issues.  Did you let Flash publish the html for the swf's... if not, give it a try.

Maybe you are looking for

  • Exported Files are ending up too Small and can't figure out why? Help please!

    I'm Exporting files with no constraints - film scans (jpgs) starting at 10-12MB are exporting to 2MB-3MB files. RAW images are also exporting that small. I've tried at 240dpi and 300dpi with the same results. The original film scan jpgs are 8'x12" at

  • Application that connects to multiple databases.

    I am developing an application that performs many task, but one in particular is connecting to multiple databases and creating user accounts in each all with the push of a single button. I have tried putting connect statements in the trigger code but

  • What's with the Canadian iTunes Store?

    How come there is no blues genre in the Canadian iTunes store. It was easier to find Canadian blues acts in the American store when I lived in the States and was subscribed to that store.

  • Why I can't sync my music into iCloud

    I have tons of Music in iTunes (win version). Would like to download it to iCloud so that it is in use also in my iPhone and iPad. Ther is not such a choice in Win - iTunes. What to do?

  • Some trouble in Value Contracts

    Hi experts, As creating a Value Contracts using 'VA41', I don't why it always requires to input the material. Inputting Assortment module is not enough? In Assortment module, there are materials. Thank you!