Stopping animations in a published project

We have inserted an swf animation (created in Captivate) in
to a slide and have also placed navigation buttons on the slide. If
the viewer hits "next" before the animation has finished, then the
animation continues to play right to the end of its time no matter
how many more slides the viewer moves through.
(Rick - took your note on the FLV file and have managed to
get this working - mostly!)

Hi 4views
What exactly does "Next" do?
* Is it a Button object?
If so, what is its programmed action?
* Is it a Click Box object?
If so, what is its programmed action?
* Is it a button in a playback control?
Cheers... Rick

Similar Messages

  • Can I add animated GIFs to my project and Publish as HTML5?

    I've created several projects with Adobe Captivate 7 and have added animated GIFs to my project. When I publish, the GIF animations are only animated when played as SWF. When I play the HTML5 version the GIFs only show the first frame.
    Is there a way for me to publish my Adobe Captivate project so that the GIFs are animated when viewing the HTML5 output?

    HaridossR1234,
    Thank you for your reply. I have tried both draging-and-dropping the animation into the project as well as using the insert-> Animation menu option, but neither result in and animated GIF being displayed when the project is on the web and being viewed as an HTML5.
    I should note that the GIF IS animated when I view the project on my computer after publishing, but not when the project is displayed on my website. I publish the project with both GIF and SWF checked and Chrome displays the animated GIF but Firefox and Safari do not.
    When you say to check the HTML5 output, do you mean when I'm publishing the project as a whole or is there that option somewhere when I'm inserting the GIF?
    Sincerely,
    Lillie

  • Is there a way to play an mp4 file at the beginning of a published project only when the project is accessed from a specific site?

    Is there a way to play an mp4 file at the beginning of a published project only when the project is accessed from a specific site?
    A little background info. I use Captivate 7 and currently have over 100 projects that I maintain on a quarterly basis. I publish using the SWF format and upload the swf/htm files to a server where they are then accessed from a few locations (within our online documentation, in our software product, on two different websites). Many of the projects are linked so some will be viewed as a series and others viewed as a standalone video. Each video uses the same template and includes an intro and end slide. Now my organization wants to implement a new intro to all videos (those I publish and those from several groups across the organization). My current intros provide overview material for the specific video so the new intro, which is an animation with audio in mp4 format, would need to be placed at the start of each project. The issue is, the intro adds 9 seconds to every video and in many cases doesn’t add any value (say, if a user accesses the video from within our product or views the videos as a series). I’ve talked it over with my boss and we want to try to add the intro only to videos accessed from site X, not any other location. So now to my question. Is there a way to play an external mp4 file (intro) only when the published project is accessed from a specific site, therefore eliminating the need to update each project? Maybe there's a way to add a parameter or variable to the URL or the html code?
    Thanks in advance for your suggestions. Please let me know if you need additional information.

    AimeeLove,
    I have a solution for you.  You may have to modify the code a little bit based on how long the timeline animation is for your clock.  I based mine on 3 seconds to complete a minute hand sweep around the clock.
    Milliseconds for each point on the clock:
    12 = 0
    1 = 250
    2 = 500
    3 = 750
    4 = 1000
    5 = 1250
    6 = 1500
    7 = 1750
    8 = 2000
    9 = 2250
    10 = 2500
    11 = 2750
    In the mouseover section for 12 o' clock, put this code...
    myVar = setInterval(function(){
         var pos = sym.getPosition();
         if (pos > 0 && pos < 50){
              sym.stop(0);
              clearInterval(myVar);
    },10);
    When you point to the time, the setInterval method loops every 100th of a second and checks the current position of the timeline.  When the timeline reaches the range between 0 and 50 milliseconds (almost impossible to hit 1 specific point), the timeline will stop at 0.  Also, the clearInterval will be fired to stop the loop.
    In the mouseout section, put this...
    sym.play();
    clearInterval(myVar);
    It start the clock again, and it also clears the loop in case you mouseout before you reach the range.
    Make sure that myVar is a global variable so you can clear it from the mouseout section.
    Repeat this for each point on the clock.  To avoid potential conflicts, you may want to use my12, my1, my2, etc. instead of myVar.  I put the milliseconds at the top that you would use as the beginning of the range.  50 milliseconds should be enough to catch it.  So, for 5 o' clock, you would make your range between 1250 and 1300.
    Let me know if you have any questions.  Thanks!
    Fred

  • Wiki or Robohelp - What are the benefits of using a wiki vs publishing projects in robohelp?

    What are the benefits of using a wiki vs publishing projects in robohelp? I currently use RH9/RH9 Server and  publish multiple SSL.  The company is looking to stop using Robohelp and replace our online help authoring tool  (RH) with a wiki. Are there any benefits of going to a wiki environment.  What RH features/functions that I have today will i not have by having IT import our robohelp files into a wiki?
    I know that a wiki is not an authoring tool, but someone must think it is and we'll still have all the functionality of publishing multiple SSLs, reports, etc once in the wiki environment.  Any comments - is this the best route?

    Hi,
    There are many differences. The idea of a wiki is to allow anyone to view and/or edit the content. Depending on the wiki system, you can set access control for viewing and editing.
    Wiki's typically have simple syntax (html in a wiki is a serious security risk), allow image embedding, links and attachments. You will need to learn the specific syntax (rather easy, but also very limited).
    What will you lose? This depends on the features available in the wiki system as well as the available plugins. A few downsides:
    - WYSIWYG editor limited, if at all.
    - No snippets
    - No variables
    - Dropdowns (may be possible through plugins)
    - Index
    - Styling based on css classes (mostly supported through HTML which is a security concern)
    - Only one version of your support system: multiple versions require multiple installations/configurations.
    - No searching in attachments.
    - No CBT (Though some wiki's allow comments in the wiki code)
    - No Word/FrameMaker import.
    - You have to create your own CSH calls.
    On the upside:
    - Most wiki systems are free, even for commercial use.
    - The syntax is quite simple, allowing you to quickly write text.
    - Wiki's typically offer good support for syntax highlighting.
    - They are very easy to set up.
    - Most wiki's have plugins to enable comments.
    The greatest downside in my opinion is that you always have the latest version of all files. Whenever you update a page, everyone immediately has the latest version. And if you want to create help for a feature that isn't released yet, you will have to use access control to make sure not everyone sees the (unfinished) help for the unreleased feature. With RoboHelp you have a single source that creates a one way output.
    We use both RoboHelp and wiki's: RoboHelp for customer help and wiki internally to share knowledge. And sharing knowledge is what wiki's are designed for.
    Greet,
    Willam

  • Adobe Captivate Help | Publish projects as HTML5 files

    This question was posted in response to the following article: http://helpx.adobe.com/captivate/using/publish-projects-html5-files.html

    I opened a captivate project and published as HTML5. It worked in a browser on the desktop. then I tried it on an iPad. That also worked. Then I tried it on an iPhone. that worked, but the document was far too large for the iphone to display. I was curious as to whether or not the "scale html content" check box would make a difference for iphone, so I tried it. It did fix that problem, but, as expected, it broke the animations. Now when I try to publish to HTML5 it creates a sort-of hybrid, where the document is the correct dimensions in a browser on the desktop, but it is forced into smaller dimensions on the iPad, and no where do the animations work anymore, although the "scale html content" check box is unchecked. I used the Captivate cache clearing button in preferences and cleared my browser cache on the iPad, restarted the computer, etc. To no avail. It seems using the "scale html content" has permanently broken Captivate 7. I am now considering reinstalling it.

  • Error in Publish Project services

    Hi,
    We have recently checked the logs contained in P6WebAccess.html files and we have found several entries like that
    Invalid value for Cost Field com.primavera.bo.support.InvalidNumberFormatException: Invalid value for Cost Field at com.primavera.bo.support.Formatter.stringToCost(Unknown Source)
    at com.primavera.bo.support.Formatter.stringToCost(Unknown Source) at com.primavera.pvapplets.gantt.detail.WbsBudgetLogPanel.rollupCurrentProposedBudget(Unknown Source)
    at com.primavera.pvapplets.gantt.detail.WbsBudgetLogPanel.loadData(Unknown Source) at com.primavera.pvapplets.gantt.detail.WbsBudgetLogPanel.reloadData(Unknown Source)
    at com.primavera.pvapplets.projects.dialogs.EpsBudgetLogPanel.reloadData(Unknown Source) at com.primavera.pvapplets.gantt.dock.GanttDockableFrameManager$1.run(Unknown Source)
    at java.awt.event.InvocationEvent.dispatch(Unknown Source) at java.awt.EventQueue.dispatchEventImpl(Unknown Source) at java.awt.EventQueue.access$000(Unknown Source)
    at java.awt.EventQueue$1.run(Unknown Source) at java.awt.EventQueue$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at
    java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at
    java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    We are suffering some issues when trying to publish projects(using ASAP method). Do you know how to fix/remove above mentioned error?
    Thanks,

    Directory Services is controlled through a service that runs a process called slapd.exe which builds an LDAP style database. The replication between LDAPs is controlled by slurpd.exe. Look in the logs and see if you can find the reason replication is failing. Maybe edit the INI files and set the log level to DEBUG and try stopping it with PostInstall.exe, which removes it, and adding it again. Look at the debugs.
    Regards,
    Geoff

  • Why do animated GIFs stop animating

    I just upgraded to Muse CC Prerelease July 29, 2013 Version 6, Build 717.
    Some animated GIFs stopped animating. Should I go back to my May 31st version of Muse?
    Is there a released version of Muse?
    Animated GIFs have always had problems when an effect like a Shadow or a Glow is applied. Sometimes they animate, sometimes they don't.
    Usually I can get animated GIFs to work if they are not placed as text objects but it makes it more difficult if things reflow.

    Message was edited by: pennyschuler

  • Is there a way to create a site map of all RoboHelp topics in a published project?

    My company uses an external search of our published RoboHelp options (as well as the internal; the external search covers all projects instead of a single one). We're looking to change search programs, but according to our web developer a lot of searches have issues finding the topics inside the published projects because of the way it links to topics using Javascript.
    I think I know the answer to this question, considering it hasn't come up in any of my searches, but in case I need a second cup of coffee -- is there a site map or listing of links within a RoboHelp project that includes all the topics? Alternately, does anyone know of a service or program that can easily create a site map from a RH project? For reference, we're using RoboHelp 9.
    Thanks!

    Look in Tools > Reports.
    Some can be saved as files. Others you can copy and paste into a text file.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Project management tools for complex publishing project?

    I was wondering what project management tools people use for managing complex InDesign projects? Software-oriented project management tools, or are there tools specifically for publishing projects?

    The "Yes" is a link to a list of them. There are also a number of web-based services like 37 Signals.

  • Click boxes and buttons not working in Captivate 3 published projects

    I really, really, hope that someone can help me...
    we are migrating from Centra/Saba LMS to Connect Pro LMS and while taking our "old" SCORM projects and posting them to the Connect Pro server we have encountered an issue...and the reason it's very hard to trouble shoot is that it's not all of the projects....??
    Once a project is pulished none of the buttons or click boxes are working - for instance we use a play button on the frist slide for students to enter the course - you click it nothing happens (except when you mouse over the button it does change color)...same with the click boxes - I can use the progress bar to move froward but anything I click just doesn't respond...
    Has anyone encountered this? and I hope know something we can do?
    THANKS SO MUCH,
    Jen

    Do your published projects work outside of your LMS?
    Or is it just inside the new LMS that it isn't working?
    Usually buttons and click boxes not working is because your slides are pausing before the button becomes active.
    What version of Captivate and Flash are you using?

  • "Publish Project" Failed in EPPM 8.3 WEB

    Hi,
    I have been trying to Integrate BI PUBLISHER with P6 EPPM 8.3. At one stage it requires administrator to select either one project and choose "PUBLISH PROJECT" option. Each time i tried to Publish a project, the status always fails. Is there anything i need to do in order to successfully Publish the Project Successfully? I have also Enabled the "Publish project" options in Application Settings under the Services Section.
    Anyone can help on this?
    Thanks and Regards

    First make sure that Global schedule services are run successfully. You can refer to MOS Doc id
    How To Successfully Configure Initial Project Publication When Publishing A Large Volume Of Projects (Doc ID 1419053.1)
    P6 Project Data Is Not Being Published Via The Publication Services (Doc ID 1333858.1)
    This will help you to properly configure publication services

  • Inserted FLV files not playing in a published project.

    The issue: Inserted FLV files display (play) when previewing a project but not in a published project.
    My setup: Windows XP and Captivate 5
    Questions:
       1) When in Filmstrip view only the movie playback bars show, not an image of the actual movie, is this correct?
       2) When I preview a project for the first time, the FLV files display (play) in Preview mode, HOWEVER, any time I preview the project after that, the movies do not play.
       3) When I publish a project, the inserted FLV files do not display (play), they only show the movie playback bars.
    Any suggestions are greatly appreciated.

    Oh yeah, all the files are in the same directory.

  • Does Captivate use whatever version of Flash you have installed to publish project?

    Does Captivate use whatever version of Flash you have
    installed to publish project? I wondering if I delete Flash 8 will
    Captivate only publish in the only version of Flash you have
    installed and thus availabile on your computer?

    When I bring it into Flash MX, I have lost alot of my button
    info. Do I have to go back and manually include that information in
    Flahs MX 2004?

  • How to publish project to get url?

    how to publish project to get url?

    Hi
    If you publish your Captivate project to Adobe Connect, then you will get a URL which you can provide to your users. Users need to open the URL to play the project.
    If you publish your Captivate project which is SCORM compliant, then you need to upload this project to any LMS,  you will get a URL which you need to provide to your users, users will open on the URL and project will start playing.
    Thanks and Regards
    VJ

  • When I publish projects with AICC reporting enabled the SWF "breaks" and does not load.

    When I publish projects with AICC reporting enabled the SWF "breaks" and does not load. If I change the publish method to SCORM the SWF works, and if I turn off reporting the SWF also works.

    OK.  That makes sense now.  Captivate 6 changed over to Rustici's LMS drivers.  Cp7 must have made even further changes that mean you must have an LMS present if you turn on reporting.
    I would suggest you just turn off reporting while you are testing other aspects of the course functionality during development, and only turn on reporting when you are ready to upload to your LMS.

Maybe you are looking for

  • Icon will not change correctly

    Dear all, when I formatted my LaCie 8GB usb-key, unfortnately (but logically) the small icon was replaced by the standard harddisk icon. I went to the LaCie homepage and downloaded the official key icon. I tried to replace icon with the information f

  • Free SMTP server for Java mail testing

    Hi all, Are there any free SMTP servers that can be downloaded from the Net for Java mail. Thanks. Regards Ram

  • IPod contacts-sync problem - workaholic?

    Hello! I have a small problem with my iPod. I widely use address book - I have a lot of info stored there. I use my own template including birthday, nameday, 3x IM,mail, bank accs, few telephone numbers, addresses, notes and picture. All vCards 3.0.

  • Pagebreaks in Cross tabs

    Post Author: Thio23 CA Forum: General Hello again, I have another problem with cross tabs. My cross tab looks like this                         Column1            Column2 Row 1       Row 2       Row 2       Row 2 Row 1       Row 2       Row 2       R

  • Not able to download ios5 to upgrade my iPad2

    We are not able to download ios5 through I Tunes. Several attempts made but were not successful. Every time download starts it shows remaining time as 5-6 hrs. & after some time it stops flashing a message "network problem connection time-out". We ar