TOC in Captivate 4

I have a project created in Captivate 4 via importing a power
point. When I add the table of contents, the power point slides
start to overlay each other when playing the project. There is also
some Action Script for some questions we wanted to do a specific
way, so that could be my problem, but wondered if anyone else has
had issues w/the TOC?

Hello and welcome to the forum,
In Captivate 5 you can change this icon. For CP4 I believe someone created a widget, am looking for it later on and will be back when I find it.
Lilybiri

Similar Messages

  • Using a custom menu button on the slide to open and close TOC in Captivate 7

    HI
    I have a custom menu button. When the user clicks I want to show TOC, ( I see there is a state to show TOC) but when the user clicks the same menu button again on that slide how can I hide the TOC. ie toggle between hide and show.
    thanks

    I described some possible scenarios: Toggle Shape buttons - Captivate 6 - Captivate blog

  • Detail Region as TOC for captivate (.swf) files

    Hi All,
    Not sure how to explain this, but i will do my best. I didnt like the TOC/Aggregator for CP 5. Thinking maybe to use Spry data using the Detail Region sample. I thought it would be simple to just combine the Detail Region code with the publsihed .swf and .htm code. But not sure what im doing wrong or if this is even possible to do. I was experimenting just using the exact same code and xml for Detail Region sample and modifying it a bit. See below...
    Appreciate the Help! Thank you.
    XML:
    <?xml version="1.0" encoding="iso-8859-1"?>
    <products>
         <product>
              <name>Adobe Photoshop CS2</name>
              <category>Digital Imaging</category>
              <boximage>images/photoshop.gif</boximage>
              <bkgimage>M_1.swf</bkgimage>
              <descheader>The professional standard in desktop digital imaging</descheader>
              <desc>Adobe&#174; Photoshop&#174; CS2 software, the professional image-editing standard and leader of the Photoshop digital imaging line, delivers more of what you crave. Groundbreaking creative tools help you achieve extraordinary results. Unprecedented adaptability lets you custom-fit Photoshop to the way you work. And with more efficient editing, processing, and file handling, there's no slowing you down.</desc>
              <features></features>
         </product>
         <product>
              <name>Adobe Illustrator CS2</name>
              <category>Print Publishing</category>
              <boximage>images/illustrator.gif</boximage>
              <bkgimage>M_2.swf</bkgimage>
              <descheader>Vector graphics reinvented</descheader>
              <desc>Adobe&#174; Illustrator&#174; CS2 software gives you new creative freedom that lets you realize your ideas quickly and powerfully. Instantly convert bitmaps to vector artwork and paint more intuitively. Save time with intelligent palettes and optimized workspaces. Plus, tight integration with other software allows you to produce extraordinary graphics for print, video, the web, and mobile devices.</desc>
              <features></features>
         </product>
         <product>
              <name>Adobe InDesign CS2</name>
              <category>Print Publishing</category>
              <boximage>images/indesign.gif</boximage>
              <bkgimage>M_3.swf</bkgimage>
              <descheader>A new standard in professional layout and design</descheader>
              <desc>Join the growing ranks of creative professionals discovering new levels of creative freedom and productivity using Adobe&#174; InDesign&#174; CS2 software. Tightly integrated with the Adobe applications you use most, InDesign CS2 delivers faster production workflows and a more fluid creative environment for designing professional layouts with sophisticated graphics and typography.</desc>
              <features></features>
         </product>
         <product>
              <name>Adobe GoLive CS2</name>
              <category>Web Publishing</category>
              <boximage>images/golive.gif</boximage>
              <bkgimage>M_4_1.swf</bkgimage>
              <descheader>Professional, standards-based Web and mobile authoring</descheader>
              <desc>Adobe&#174; GoLive&#174; CS2 software lets you unlock the power of CSS with intuitive visual tools such as prebuilt CSS objects that you can drag and drop to build sophisticated sites. Jump-start your designs by easily converting Adobe InDesign&#174; layouts into Web pages. Or, design Web and mobile content in an advanced, standards-based coding environment.</desc>
              <features></features>
         </product>
         <product>
              <name>Adobe Dreamweaver 8</name>
              <category>Web Publishing</category>
              <boximage>images/dreamweaver.gif</boximage>
              <bkgimage>M_5_1.swf</bkgimage>
              <descheader>Dreamweaver 8 is the industry-leading web development tool, enabling users to efficiently design, develop and maintain standards-based websites and applications.</descheader>
              <desc>With Dreamweaver 8, web developers go from start to finish, creating and maintaining basic websites to advanced applications that support best practices and the latest technologies.</desc>
              <features></features>
         </product>
         <product>
              <name>Adobe Flash 8 Professional</name>
              <category>Web Publishing</category>
              <boximage>images/flash_pro.gif</boximage>
              <bkgimage>M_6_1.swf</bkgimage>
              <descheader>Introducing Macromedia's biggest Flash release to date.</descheader>
              <desc>Flash&#174; Professional 8 is the industry's most advanced authoring environment for creating interactive websites, digital experiences and mobile content. With Flash Professional 8, creative professionals design and author interactive content rich with video, graphics, and animation for truly unique, engaging websites, presentations or mobile content.</desc>
              <features></features>
         </product>
    </products>
    HTML Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Detail Region and Effects Sample</title>
    <link href="files/samples.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    .product {
         cursor: pointer;
    .hover {
         background-color: #FFFFCC;
    .selected {
         background-color: #CCCCCC;
    #description {
         opacity: 0;
         filter: alpha(opacity=0);
         background-color: white;
    </style>
    <script src="files/xpath.js" type="text/javascript"></script>
    <script src="files/SpryData.js" type="text/javascript"></script>
    <script src="files/SpryEffects.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var ds1 = new Spry.Data.XMLDataSet("files/products.xml", "products/product");
    var gEffectInProgress = null;
    var gPendingSetRowIDRequest = -1;
    function fadeInContent(notificationType, notifier, data)
         if (notificationType != "onPostUpdate")
              return;
         var effect = new Spry.Effect.Fade('description', { to: 100, from: 0, duration: 500, finish: function() {
              // The region is now showing. Process any pending row change request.
              gEffectInProgress = null;
              if (gPendingSetRowIDRequest >= 0)
                   var id = gPendingSetRowIDRequest;
                   gPendingSetRowIDRequest = -1;
                   fadeOutContentThenSetRow(id);
         effect.start();
    Spry.Data.Region.addObserver('description', fadeInContent);
    function fadeOutContentThenSetRow(rowID)
         if (gEffectInProgress)
              gPendingSetRowIDRequest = rowID;
              return;
         if (rowID == ds1.getCurrentRowID())
              return;
         gEffectInProgress = new Spry.Effect.Fade('description', { to: 0, from: 100, duration: 500, finish: function() {
              ds1.setCurrentRow(rowID);
         gEffectInProgress.start();
    //-->
    </script>
    <script src="files/standard.js" type="text/javascript"></script>
    </head>
    <body>
    <h3>Detail Region and Effects Sample</h3>
    <hr />
    <table width="100%" border="0">
         <tr>
              <td width="21%">
    <ul spry:region="ds1" spry:repeatchildren="ds1">
                        <li class="product" onclick="fadeOutContentThenSetRow('{ds_RowID}');" spry:select="selected" spry:hover="hover">{name}</li>
                </ul>
              </td>
           <td width="79%">
       <div id="description" spry:detailregion=" ds1">
      <div id="CaptivateContent">
       </div>
       <script type="text/javascript">
          var so = new SWFObject("{bkgimage}", "Captivate", "100%", "100%", "8", "#CCCCCC");
             so.addParam("quality", "high");
             so.addParam("name", "Captivate");
             so.addParam("id", "Captivate");
             so.addParam("wmode", "opaque");
             so.addParam("bgcolor","#F1F4F5");
             so.addParam("menu", "false");
             so.addParam("allowScriptAccess", "always");
             so.addVariable("variable1", "value1");
             so.setAttribute("redirectUrl", "http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash");
             so.write("CaptivateContent");
       </script>
            <script type="text/javascript">
          document.getElementById('Captivate').focus();
          document.Captivate.focus();
       </script>    
          </div>
          </td>
      </tr>
    </table>
    </body>
    </html>
    Message was edited by: drodax

    Hi,
    I think you will need a third party convertor - a quick
    google sent me to this one
    http://www.winavi.com/swf-to-avi.htm
    which is free.

  • Adobe Captivate 8.1 TOC not refreshing when published

    I have Adobe Captivate v8.1. In my project, which originated in PPTX, the slides are not refreshing in the TOC in Captivate. I have used the 'reset' button in TOC but when I publish, it is not picking up the slide title?
    thanks Lynn

    PowerPoint is not the best about managing slide titles. Unless you created the content in outline mode, or laboriously added titles to each slide in outline mode, you may find that what appears to be a slide title in PowerPoint is not recognized as a slide title by Captivate.
    The good new is, once you add the titles (either in Captivate or in PowerPoint), you should be able to see them in the TOC after refreshing it.
    Just be aware, you'll loose any customization to the TOC contents when you refresh.

  • How to Remove the Captivate Runtime from bottom of TOC?

    Hello,
    Is there a way to remove or hide the default total running time that appear at the bottom of the TOC in Captivate 5?
    Thank You

    Hello
    Download Hide TOC TotalDuration Widget from the link mentioned below
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=2258529
    Hope it helps
    thanks
    VJ

  • Can I edit image size in the TOC?

    Is it possible to edit the size of the image placeholder used for the TOC in CP5?
    I'd like to use it for a company logo to free up some design space and keep marketing happy, but I can't make it big enough.
    Unfortunately I don't have access to Flash so if there is an alternative way that would be great.
    Thanks
    Sam

    Hi,
    Unfortunately, it is not possible to edit the size of the image placeholder in TOC in Captivate 5. The image is scaled down to project size and displayed in the TOC.
    You could please log a Feature Request for the same under https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=5.
    Thanks,
    Sushma

  • Is there a way to make the video I have added to my TOC larger?

    I have added a video to my TOC in Captivate and would like to know if there is a way to make it larger? My goal is to have a talking head video play next to and sync with a powerpoint deck. I am able to get the layout how I want it, however, my video (originally 640x480) is showing up very small. I would like to know if there is a way to make the video appear larger.

    Afraid not.  The TOC video is very limited in size.

  • Custom TOC

    I am trying to create a custom TOC in Captivate.  I don't want to use the built in one with captivate.  We are looking to have the menu slide up from the bottom, and display checkmark and other things as they complete stuff.  The only problem I am hitting (and a big one) is that I cannot have multiple named items on screens.  And of course on the master I cannot name it.  So I have no options of calling the menu from actions, unless I create a seperate name on each slide and have to code each one.
    Any ideas?  thanks in advanced.

    http://blog.lilybiri.com/why-i-like-shape-buttons-captivate-6
    http://blogs.adobe.com/captivate/2012/09/training-lilybiris-favourite-shapes-to-trigger-ad vanced-actions.html

  • Getting the TOC progress indicator w/o displaying the TOC?

    Hi,
    I want to display the progress indicator (that is, the 00:30 / 06:00 Minutes widget that comes with the TOC) in my Captivate output, but I do not want the TOC. Is there any way to display this type of progress indicator without the TOC (in Captivate 4 or 5)?
    Thanks!

    Abhishek,
    The goods movement will not be allowed without system status release.
    But with user status you can block goods movement even if the system status is "Released".
    Regards
    Kannan G

  • Bookmark feature in CP4 TOC

    Okay, so I know the bookmarking question has been done to death and as I understand it Captivate doesn't support any kind of bookmarking. What it does do however (if it's linked with an LMS) is resume where a user drops off. That, imho, isn't bookmarking as much as it is a resume feature. (and most of the people who have co-opted the word 'bookmarking' are actually looking for this resume feature)
    Now if Captivate doesn't support bookmarking of any kind then why is there a 'bookmark' feature in the TOC?  The default TOC in Captivate 4 has a little star that claims to bookmark - but in all my testing I have no idea WHAT it does. I can fill in the circle but that's about it. I can't unfill it. I don't get a dialog box or anything that lists the users bookmarks so they can choose .. I'm just not sure what that "bookmark" in the TOC is supposed to do.
    What I'd like it to do is bookmark slides so at a later date a user can go into the course and pull up their "bookmarks" and choose which one they'd like to view.
    Anyone have any clue if this can be accomplished?
    Thanks for your help peeps!

    Hi Bradley,
    It should work just a Lilybiri described and that is also how it works for me.
    Any chance you are deploying through and LMS? If so then you also need to select "Never send resume data" in the SCORM reporting settings. Otherwise that would create a bookmark for you.
    /Michael
    Click here to visit the http://www.cpguru.comblog

  • TOC ideas

    I'm looking for ideas about how to best handle the TOC in Captivate 6. The solution needs to be HTML5 compatible.
    I prefer the overlay style because it is not so distracting and busy looking as a TOC that is always open, and it takes less space.
    However, I want to make it more intuitive for learners without having a written or verbal explanation of how to use the TOC. It is not at all intuitive that learners can click the double arrows to open and close the TOC.
    If the double arrow could be replaced with a label "Table of Contents" that would help, but the TOC widget is Flash, so I don't think it would work with HTML.
    Any ideas welcomed.
    Adding to my post, I know that I can replace the standard double arrow with an image that says TOC, but the image is so miniscule that it is impossible to read.

    Hello,
    klick into your table of contents (the entries should now be marked with the blue color) and then open the "Inspector". Go to "Text" and press the "Tabs" button. Change the "Tab Stops" entry (doubleclick on it) to a smaller value.

  • Animating a TOC

    I'm trying to animate a TOC in Captivate 5, and have it show on every slide. I'd like each new topic to "fly in" from the left....for example.

    Hello and welcome to the forum,
    Since no one has answered something, perhaps you should be a little bit more detailed? I'll try to ask some questions:
    Which version of CP do you use?
    You want on the first slide to have an animation, flying in the first topic, right?
    Has this first topic more than one slide? Do you want the same animation on each of those slides, or only on the first one?
    How do you create the rest of the slide, besides the TOC: are those captured slides or slides created with objects?
    When the second topic starts, should the first one remain static or also fly in before the second one?
    Do you understand what I mean by more details?
    Lilybiri

  • Can i edit slideShow size?

    when i go to view a thumbnail and it opens the picture up the window covers my whole screen (23inch) and my pic is only like 500 pixels. is there a way to resize the slide show window so it fits perfect around my pic. or will i have to open the slideshow HTML in dreamweaver and reset it there?

    Hi,
    Unfortunately, it is not possible to edit the size of the image placeholder in TOC in Captivate 5. The image is scaled down to project size and displayed in the TOC.
    You could please log a Feature Request for the same under https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=5.
    Thanks,
    Sushma

  • Change the table of contents in Adobe Presenter 9

    It appears that Presenter automatically creates the tables of contents for a Powerpoint presentation based on the slide title. Is there a way to modify the name that appears with a TOC navigation without changing the slide title?
    I would also like to know if it's possible to structure the TOC so that there are main topics and sub topics. For example, in Captivate, you can modify the TOC by clicking on the arrows in the menu to push categories under one another, like an outline:
    Main Topic
         Subtopic Slide 1
         Subtopic Slide 2
    Main Topic 2
         Subtopic Slide 1 
         Subtopic Slide 2

    Presenter doesn't have the same functionality for the TOC as Captivate. There is some wizardry that can be done if you want to adjust the look of the slide list.
    Work around was discussed in this thread: http://forums.adobe.com/message/1970468#1970468

  • Remove "Slide Title" text from table of contents?

    Hi all,
    Is there anyway to remove the text "Slide Title" when you publish a Table of Contents (ToC) from Captivate 8?
    It seems I can remove/add the other text from the ToC (e.g. project name, title, etc.) but not the line that appears above all of the slides and the accompanying bookmark button/icon.
    Any ideas?
    Cheers,

    Hi Lilybiri,
    Ah thanks for the confirmation and reply. That's a shame but I'll just work around it.
    Cheers,

Maybe you are looking for

  • Cold junction compensation

    Hello We have just bought a new NI card (PCI-6052E) connected to a terminal block (CB-68LP), and so we now have to set-up the cold junction compensation manually (previously we were using a SCXI-1303 which had it built in). I would just like to check

  • DVD Digital Audio Out

    I'm new to the Mac world, and I was wondering does DVD player in Mac OSX do digital audio out? I'm currently using a Dell XPS. I watch all my movies on it and it's connected to a surround system. When I play movies it sends the Dolby Digital signal s

  • Help!! can not get Java apps to run on Nokia 9210

    Hi all, I am creating a java application for the Nokia 9210. The .sis file seems to install correctly on the device, and the application appears in the Extras menu. However, when I open the application, it says "Loading Java..." and then "Starting Ja

  • IPhoto not uploading pictures also cant find photostream option on my cloud.Help ny1?

    iPhoto not uploading pictures also cant find photostream option on my cloud.Help ny1? I use iphoto 11.n my photostream is activated n it shows its uploading but nothing come on my cloud.

  • IPhoto/Mountain Lion Desktop Settings

    Hey there, This is kind of a simple but convoluted question: I'm running the latest Mountain Lion on a MacBook Pro (I'd give more info but I don't think it's relevant in this case): I'm running the latest iPhoto and I have several databases/libraries