Captivate 6 - Combining publishing files

We're working to convert our old multimedia presentation system to a modern one.  To maintain backwards compatibility, we want to use Captivate to publish both Flash and HTML5, which is already supported.  The problem we've run into is that we can't have "multiscreen.html" operate as a frame-based system.  Instead, we need the player to be generated in the same file as it determines which player to load (supervisors instructions).  This would be beyond easy in PHP, but we're restricted to jQuery.  I've gotten the system to work, but there is a hiccup that I have not been able to correct.  When the HTML5 player loads, the #project_container DIV is not compensating for the height of the playbar, so it's generating 720px instead of 750px.  Editing the height in the CPLibrary, or through jQuery after the DoCPInit() runs, results in a partial fix.  Either of these modifications will allow the playbar to display, but only after adjust the size of the browser window.  Upon generation, the playbar is hidden below the screen.
As it is, I've yet to figure out why the playbar is being ignored by the replacement of the three original .html files.
The file I created can be viewed at http://studentweb.ecpi.edu/chresb9788/ENG120_U1_Lecture1/index_frameless.html while the original published files can be accessed at http://studentweb.ecpi.edu/chresb9788/ENG120_U1_Lecture1/index.html.  I renamed the files so they make logical sense, but otherwise they're the exact same.  The CPLibrary file is also in its original state, no modifications as all.  If you pull up a browser debugger on the index.html, you'll see that the #project_container displays the appropriate height by default, while the index_frameless.html displays the appropriate height - playbar height (30 px short).
Other than the hiding playbar, my code seems to work perfectly and I have been able to copy the files to additional publications from Captivate with identical results (fully functional, just the quirk with the playbar).
Most of the modifications I've had to make were for background transparency.  Here's a list of the files I've modified to make this work:
\assets\css\CPLibrary.css
\assets\js\CPWidgetManager.js
\captivate.css
\index_frameless.html (Combination of projectname.html, index.html, and multiscreen.html, with tweaking of the Flash/HTML5 identification)
\project.js
\standard.js
Any assistance that can be offered would be greatly appreciated.

Alright, so I figured out that the "primary" issue was with the wrapper DIV used to load the player based upon whether HTML5 video was playable or not.  As soon as I removed the wrapper, it worked without issue.  It's not exactly what was wanted, but we by-passed the issue by wrapping the CSS and JavaScript links in the wrapper alone and applied jQuery to force the player/loading screen and wrapper to hide when the Flash player is used (displayed using wrapper too).
This means that everything loads regardless of the player being used, but it hides what isn't needed from view.  A working copy can be found at http://studentweb.ecpi.edu/chresb9788/ENG120_U1_Lecture1/index_frameless_new.html.  For anyone interested, here is the direct code utilized:
<!DOCTYPE html>
<html style="height: 100%;">
  <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
    <meta content="initial-scale = 1, minimum-scale = 1, maximum-scale = 1" name="viewport">
    <title></title>
    <meta content="NO-CACHE" http-equiv="CACHE-CONTROL">
    <script src="standard.js" type="text/javascript"></script>
    <script src="assets/js/CPHTML5Warnings.js" type="text/javascript"></script>
    <script src="assets/js/jquery-1.6.1.min.js" type="text/javascript"></script>
    <script>
      function generateEmbed()
        var fileType;
        if(!!document.createElement('video').canPlayType)
          var vidTest = document.createElement('video');
          oggTest = vidTest.canPlayType('video/ogg; codecs="theora, vorbis"');
          if(!oggTest)
            h264Test = vidTest.canPlayType('video/mp4; codecs="avc1.42E01E, mp4a.40.2"');
            if(!h264Test)
              fileType = 'flash';
            else
              if(h264Test == 'probably')
                fileType = 'html5';
              else
                fileType = 'flash';
          else
            if(oggTest == 'probably')
              fileType = 'html5';
            else
              fileType = 'flash';
        else
          fileType = 'flash';
        if(fileType == 'html5')
          $('#playerFlash').hide();
          $('.playerHTML5').show();
          $('#cpDocument').show();
        else
          $('.playerHTML5').hide();
          $('#cpDocument').hide();
          $('#blockUserInteraction').hide();
          $('#playerFlash').show();
    </script>
  </head>
  <body onload="generateEmbed();" style="margin: 0px; padding: 0px; width: 100%; height: 100%; overflow: hidden;">
    <div class="playerHTML5" style="background-color: transparent; border: 0px; padding: 0px; width: 100%; height: 100%; display: none;">
      <link href="assets/css/CPLibrary.css" rel="stylesheet" type="text/css">
      <link href="assets/css/CPQuiz.css" rel="stylesheet" type="text/css">
      <link href="assets/css/smoothness/jquery-ui-1.8.14.custom.css" rel="stylesheet" type="text/css">
      <link href="assets/css/dd.css" rel="stylesheet" type="text/css">
      <script src="assets/js/uncompressed.jquery.dd.js" type="text/javascript"></script>
      <script src="assets/js/uncompressed-jquery-ui-1.8.14.custom.js" type="text/javascript"></script>
      <script type="text/javascript"></script>
      <noscript style="text-align: center; font-size: 24px;">Enable Javascript support in the browser.</noscript>
      <style>
        .shadow
          overflow: hidden;
        .cpMainContainer
          background-color: transparent;
          //background: url("./assets/htmlimages/BackgroundImage.png");
          height: 100%;
          width: 100%;
          padding: 0px;
          position: absolute;
        .blocker
          position: absolute;
          left: 0px;
          top: 0px;
          display: none;
        .loadingBackground
          //position: absolute;
          //display: block;
          background-color: #777777;
          opacity: 0.5;
        .loadingString
          //width: 100px;
          //position: absolute;
          color: #ffffff;
      </style>
      <script src="assets/js/CPRuntimeDailog.js" type="text/javascript"></script>
      <script src="assets/js/CPLibrary.js" type="text/javascript"></script>
      <script src="assets/js/CPQuizLibrary.js" type="text/javascript"></script>
      <script src="assets/js/CPPlaybar.js" type="text/javascript"></script>
      <script src="assets/js/CPTOC.js" type="text/javascript"></script>
      <script src="assets/js/CPWidgetManager.js" type="text/javascript"></script>
      <link href="assets/playbar/playbarStyle.css" rel="stylesheet" type="text/css">
      <script src="assets/playbar/playbarScript.js" type="text/javascript"></script>
      <script src="Project.js" type="text/javascript"></script>
    </div>
    <div class="cpMainContainer" id="cpDocument" style="left: 0px; top: 0px;">
      <div class="shadow" id="project_container" style="left: 0px; top: 0px; position: absolute;">
        <div class="cp-movie" id="project" style="width: 1280px; height: 720px">
          <div class="cp-timeline cp-main" id="project_main">
            <div id="div_Slide" onclick="handleClick(event)" style="top: 0px; width: 1280px; height: 720px; position: absolute; -webkit-tap-highlight-color: rgba(0,0,0,0);"></div>
          </div>
          <div id="autoplayDiv" style="display: block; text-align: center; position: absolute; left: 0px; top: 0px;">
            <img id="autoplayImage" src="" style="position: absolute; display: block; vertical-align: middle;">
            <div class="autoPlayButton" id="playImage" onclick="cp.movie.play()" onkeydown="CPPlayButtonHandle(event)" style="position: absolute; display: block; vertical-align: middle;" tabindex="0"></div>
          </div>
        </div>
        <div id="playbar" style="left:0px; float: left; position: absolute;"></div>
        <div id="toc" style="left: 0px; float: left; position: absolute;"></div>
        <div id="cc" style="left: 0px; float: left; position: absolute; visibility: hidden;">
          <div id="ccText" style="left: 0px; float: left; position: absolute; width: 100%; height: 100%;">
            <p style="margin-left: 8px; margin-right: 8px; margin-top: 2px;"></p>
          </div>
          <div id="ccClose" onclick="showHideCC()" style="background-image: url(./assets/Playbar_icons/ccClose.png); right: 0px; float: right; position: absolute; cursor: pointer; width: 13px; height: 11px;"></div>
        </div>
        <div id="passwordDiv" style="display: block; text-align: center; position: absolute; width: 100%; height: 100%; left: 0px; top: 0px;"></div>
        <div id="expDiv" style="display: block; text-align: center; position: absolute; width: 100%; height: 100%; left: 0px; top: 0px;"></div>
      </div>
    </div>
    <div class="blocker" id="blockUserInteraction" style="width: 100%; height: 100%;">
      <table class="loadingBackground" id="loading" style="width: 100%; height: 100%; text-align: center; vertical-align: middle;">
        <tr style="width: 100%; height: 100%; text-align: center; vertical-align: middle;">
          <td style="width: 100%; height: 100%; text-align: center; vertical-align: middle;">
            <div class="loadingString" id="loadingString">Loading...</div>
          </td>
        </tr>
      </table>
    </div>
    <div class="playerHTML5" style="background-color: transparent; border: 0px; padding: 0px; width: 100%; height: 100%; display: none;">
      <script>
        function DoCPInit()
          CPPreInit();
          cp.QuizLibraryInit();
          CPPostInit();
        document.oncomplete = DoCPInit();
      </script>
    </div>
    <div id="playerFlash" style="background-color: transparent; border: 0px; padding: 0px; width: 100%; height: 100%; display: none;">
      <div id="CaptivateContent" style="height: 100%;"></div>
      <script type="text/javascript">
        var so = new SWFObject('ENG120_U1_Lecture1_skin.swf', 'Captivate', '100%', '100%', '10', '#CCCCCC');
        so.addParam('quality', 'high');
        so.addParam('name', 'Captivate');
        so.addParam('id', 'Captivate');
        so.addParam('wmode', 'window');
        so.addParam('bgcolor','#f5f4f1');
        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>
  </body>
</html>
Maybe yall will be able to figure out a better way to do this, but this will be enough for our purposes.  All we'd have to do is replace the SWFObject with a new Flash output and put this file in the output folder.

Similar Messages

  • Captivate 5.5 published files are not visible in Fire Fox or open in new window.

    When I publish and post Captivate 5.5, the HTML or the swf files do not display in Fire Fox (latest version) without forcing the file to open in a new window (if it displays at all). If it does work, the Flash security blocks the swf on an ugly view until the user clicks.
    I thought it was because I have to assign a direct URL to each component, but all of the other Captivate sites I have reviewed have the same issue when viewing in Fire Fox.
    IE will display after the active x is authorized (I can live with that).
    You Tube and other Flash display properly in Fire Fox, just not Captivate products.
    I have disabled off all plugins, modified the protected settings, and everything I could find listed in the Fire Fox help. I have installed a previous version of Flash and Shockwave Player. Short of reinstalling windows, it is not working and that will not help because the published content is not visible on any other machine in the office or at home.
    The files are in a Portal, so I cannot share them unless you are in the DoD and have an AKO or DKO account.
    However, here is another example of the Captivate not working.
    https://clc.dau.mil/games (this displays on some computers, but not all)
    http://www.hartisd.net/pages/uploaded_files/Assignment_Search.mht (After allowing the mht, this displays in IE)
    I am not sure if it has something to do with the other 2 published xml files that are not directly referenced in the html, but I just need either the swf or html to display in the iframe without forcing another window to display and without a lot of dependecy issues with other add-ons in Fire Fox.
    - Thanks!

    Any of the DAU games, if they display. It is a government site, so they have the standard gov garbage (stuff not working like certificates), but nothing is harmful nor can they do anything to track other than the current session.
    It is kind of weird how the content is displayed... It is not an intranet, it goes to a limited access portal. When I store content, it uses an absolute path instead of relative path. Very aggrevating when using many of the tools for non-programmers (like me), and probably more aggrevating for programmers.
    Whether I point directly to the .swf or to the generated HTML, the content displays in IE, but not in FF.
    It may be a combination of FF and Captivate. FF seems rather flaky in dealing with swf files. There is the consideration for add-ons, but I tried on a newly imaged computer and it still was not working. Even after going through all of the FF steps to get it to work.
    Basically we had to create a new HTML file to display the content because the Captivate published files don't work. However, the new HTML does not reference the XML files.
    When I publish, I get 5 different files, .swf, .htm, .js, and 2 .xml. When I dig through the code (once again, not a programmer, soo I may be missing something), even round tripping to Flash, I do not see how the .xml files are referenced at all.
    These may be different topics, not sure, it came up because I am trying to get a simple solution from the product that can be easily transferred to our production servers and available for Solders to access.
    - Thanks
    Michael

  • Links to URLs don't work in published file - Captivate 4

    In Captivate 4, my links to URLs do not work in my published file.  I am rolling this out via email to a small number of people.

    Hi there
    Likely you will need to ask each user to configure their list of Trusted Locations for the Flash Player to allow your Captivate to operate the URLs.
    Here is a small tutorial on configuring the trusted locations:
    Click here to view
    Cheers... Rick

  • Captivate 5: Audio is cut-off at the end of the published file

    Hi,
    I'm using Captivate 5. I published my projects to Flash 10 (SWF/HTM) format and the audio is always cut-off at the end. For example, if my last slide has this audio "Thank you for time and have a good day.", what you will hear is only "Thank you for your ti" or "Thank you for your time and have". This only happens on the published file. The audio is not cut-off when you preview the project.
    Here are additional observations:
    -> If I published with playback controls, the audio is cut-off the first time i view the output; however, the second time I view the output or if I drag the playhead, the audio is no longer cut-off. The timing of the elements (mouse, highlights, audio, etc.) is also way better when I view it the second time versus the first time.
    -> If I published without playback controls, the audio is always cut-off no matter how many times I view the flash file.
    -> I have tested publishing to Flash with different # of slides (10 slides, 50 slides, 100 slides) and the result is the same. So I don't think it has something to do with the number of slides.
    > Note also that the last slide has enough audio to match the slide's length. So I don't know why it's cut-off.
    Thank you in advance for your assistance.
    Regards,
    Rose

    Hi MagicBBB,
    A patch to address this issue is available. Check for updates from the application through Help >> Updates.
    Also have a look at the release notes here. http://kb2.adobe.com/cps/881/cpsid_88142.html
    Please try out the patch and let me know.
    Thanks,
    Ashwin Bharghav B
    Adobe Captivate Team

  • I have captivate 6, I´m using Quizers part and I need to publish  file .app in .ipa, what do I have

    I have captivate 6, I´m using Quizers part and I need to publish  file .app in .ipa(ipad), what do I have to do to make it run in native way, that is without internet conection?

    Hi!
    That's an interesting question you have raised.
    I would recommend you to create your Captivate Project, Publish it to HTML5 output and Zip the Output Package,
    Use the PhoneGap to package it for iOS devices and produce .IPA file for the same .
    You can create an account here -- https://build.phonegap.com/
    I haven't tested it yet, but, I'll do it today.
    Let me know if this works out.
    Thanks,
    Anjaneai

  • Captivate 4 - Issue viewing exported PDF in published file on LMS

    I'm working in Captivate 4 and have included a link to a PDF document on a particular screen. It works beautifully when I view the published file until I move the files into the LMS - at that point, the PDF won't launch.
    Here's what I've done and hopefully someone can tell me what I need to do differently?? I created a click box on a screen and have set the On Success field to "Open URL or file". I browsed to find the location of my PDF and clicked the drop down arrow to select "New" and "Continue playing project" (so the learner can return to the original course when they're done reading the PDF). When I publish the file to Flash, I select the "Export PDF" option and it does it's magic. When I preview the published version, everything works beautifully, the course runs, the PDF launches and life is good. Then, I set up the course on our LMS and copy over the published files (including the source PDF). The course plays as expected until the learner clicks to view the PDF - at that point, nothing happens. What am I doing wrong? Does this have anything to do with Adobe Reader 9 (which many of our learners wouldn't have on their desktops)? Do I need to convert my PDF to HTM? Help... please!

    Hello,
    If I do understand your question all right (sorry, am not a native English speaker), I do believe you are mixing up two things. If you want indeed to publish to PDF (and not to SWF or EXE), you'll get a multimedia PDF (in which a SWF can play) but in that case the user really do need the Adobe Reader 9, previous versions do not support multimedia PDF.
    What seems a bit contradictory is that you start with mentioning an issue with a PDF that should be called from a CP-slide. The problem there could be that you were linking to an absolute path on your PC when browsing, can you check that? If you introduce simply the name of the PDF and you make sure that the PDF and the CP-published files (normally HTML, JS and SWF) are uploaded in the same folder, the CP will find the PDF. I think you now have a 'broken link' because of an absolute path reference for the PDF.
    Lilybiri

  • Captivate 3 Published file won't execute JavaScript

    Pulbished Captivate 3 course.   Final screen has an exit button with the following script:  ab_SetScoreStatus(100,'completed');ab_CloseWindow();       When I post the course to our LMS it uploads fine, but when I try and run the course I get an error when I click on the Exit button and it doesn't do anything.   I had someone try the same thing on their computer and it works fine for them so I'm thinking it's something with my settings.   This used to work for me but then I got a new computer so not sure if the settings (IE, Flash or ????) are different or what.   I'm running Flash 10, and IE 8.   Any help would be greatly appreciated.  Thank you.

    Good morning Rick, and thank you for trying to help.
    Sheri Delaney
    From: Captiv8r [email protected]
    Sent: Wednesday, February 16, 2011 3:59 PM
    To: Delaney, Sheri
    Subject: Captivate 3 Published file won't execute JavaScript
    Welcome to our community
    See if the following links help.
    http://forums.adobe.com/thread/473021#5
    http://forums.adobe.com/thread/473021#10
    Cheers... Rick
    http://www.robowizard.com/pc.gif
    Helpful and Handy Links
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=5
    http://www.ShowMeSolutions.biz
    http://sorcererstone.wordpress.com/
    http://www.gooberguides.com

  • Captivate 8 to publish as an executable file?

    I do not see the option in Captivate 8 to publish as an executable file.  Where am I missing it?  I had no problem with any previous Captivate.

    Hi There,
    Please go ahead and update your Captivate 8 to Captivate 8.0.1. .exe feature is now available again on this patch.
    Captivate 8.0.1 patch is live,you may download it from here : http://www.adobe.com/support/captivate/downloads.html
      Readme for CP 8.0.1 : http://helpx.adobe.com/captivate/kb/cp8-patch.html
    Regards,
    Mayank

  • Recreate captivate file from published files?

    Lost the captivate file in a computer move. Is there any way
    to recreate the file from the published files?

    Welcome to our community
    Unfortunately no way to do that other than to carefully
    observe and rebuild slide by slide. Sure would be nice if we had a
    decompiler that would suck in an existing output and spit back out
    an editable CP. The thing is, Adobe hasn't heard enough folks
    scream for it to really consider creating it.
    I heartily encourage you and others to please consider
    submitting a Wish Form to ask for this kind of a utility.
    Click
    here to view the WishForm/Bug Reporting Form
    Cheers... Rick

  • Captivate CS5 - doesn't publish files

    Hi
    I created a new project using ppt slides and then I just added a background music.
    Everything seemed to work when I previewed the project.
    The fun part began when I published it.
    First of all, it was weird as the ppt was about 100 Mb and the published file was ready within 3 seconds?
    Second of all that's the HTML file I got.
    SWF doesn't work either.
    This has never happened before.
    Any idea why and how to fix it?
    Thanks

    Hi there,
    Thanks for reaching Adobe Community.
    What is the version of Windows you have?
    Also could you create a new ppt project and then import that and see if that is still happening?
    Thanks!

  • Javascript is not working in the published file

    Hi ,
    I using the javascript in the captivate 5.5 to generate the text from variable in the textbox. It is working when I press the F12 button, But it is not working in the Published file.
    I called the function in the button and I written the script in the slide.
    Please let us know how to proceed..
    Thanks
    Sathish BC

    This is the Script I used in the captivate 5.5 and I called the text using variable in the text box.
    var objCP = document.Captivate;
    function valText()
    var a  = objCP.cpEIGetValue('A');
    var b  = objCP.cpEIGetValue('B');
    if (b>=5)
    objCP.cpEISetValue('B',0);
    GetAryVal(b);
    objCP.cpEISetValue('rdcmndGotoFrameAndResume', objCP.cpEIGetValue('currSlide'));
    function GetAryVal(e)
    var a1  = objCP.cpEIGetValue('Txt');
    var b1 = a1.split("#");
    var c1 = b1[e-1].split("$");
    objCP.cpEISetValue('C', c1[0]);
    objCP.cpEISetValue('D', c1[1]);
    valText();

  • Captivate crashes on publishing HTML5 output with a widget that uses "requires" tag in oam.xml

    Has anyone else run into this problem?
    I have an HTML5 widget that depends on certain (small) image files.
    When I try to wrap those image files in the oam.xml file via the <requires> tag, the widget places on the Captivate stage just fine, but Captivate crashes on publish.
    Remove the <requires> elements (but leave the empty tag) and it publishes just fine, but the images don't make it into the published folder.
    Here is the oam.xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <widget name="PBEAWidget" id="com.iastate.widgets.PBEAWidget"
           spec="0.1b" jsClass='PBEAWidget' sandbox='true' width='180' height='30'
           xmlns="http://openajax.org/metadata">
        <!-- Required tag specifies any external depencies your widget might have such as images, jQuery etc, see http://helpx.adobe.com/captivate/using/create-wdgt-files.html -->
      <requires>
      <require type="folder" src="assets/images"/>
      </requires>
        <!-- Main widget JS file -->
        <javascript src="js/PBEAWidget.js"/>
        <!-- Properties tag currently not supported -->
        <properties />
        <content type='fragment'>
        <![CDATA[
      <div id="ConnectionDiv" style="display: inline-block; padding: 4px; vertical-align: center">
      <img src="images/lights-02.png" id="statusLight" width="16" height="16" alt="Connection Status" style="position: absolute: left: 0; top: 0; margin-bottom: 2px; cursor: pointer"/>
      </div>
      <div id="FeedbackDiv" style="display: inline-block; padding: 2px 6px 0px 6px; height: 28px; border: solid 1px #fff; border-radius: 6px">
      <img src="images/icons_01.png" id="createFeedback" width="24" height="24" alt="Write Feedback" style="cursor: pointer"/>
      <img src="images/icons_02.png" id="finishFeedback" width="24" height="24" alt="Submit Feedback" style="cursor: pointer" />
      </div>
      <div id="PrintDiv" style="display: inline-block; padding: 3px 6px 0px 6px">
      <img src="images/icons_03.png" id="printCourse" width="24" height="24" alt="Print Course" style="cursor: pointer" />
      </div>
      </div>
      ]]>
        </content>
    </widget>

    Hi
    Can you please forward the file, or share it in a shared location, so that we can look into the issue?\
    Thanks,
    Mohana

  • CP5 Trail Version: Published files not playing

    HI
    I have been evaluating CP5 and published a file to show to my collegues.
    Placing the published HTM and SWF file on a network drive or as an email attachment to share with the others and they don't work.
    They work for me if the files are on my pc but don't if I try to access them from a network drive.
    So the question is, is the trail version  crippled so that the published files can only be played on the PC that they were published on? Or have I done something wrong in the publishing process?
    I can't seem to find any reference to the files being crippled.
    Cheers
    Craig

    Hi Craig,
    When you publish to SWF, Captivate outputs 3 files 1 htm file, 1 SWF file and 1 js file. On your desktop if you open the HTM file the content will open as it can see the SWF and JS files in the same folder.
    If you are sending it as an email then zip the content  and in the destination machine unzip and launch the HTM. This should play the content.
    If you are trying to access the files from a network location make sure all the 3 files are in the same folder and you have read permissions to the folder
    -Ashwin Bharghav B

  • Adobe Captivate 8 projects published to HTML 5 shows major loading problems and stops

    Adobe Captivate 8 projects published to HTML 5 cause major loading problems in most browsers(IE 11, Chrome v. 35.0, Firefox v. 31). Loading… (screen)
    The view stops after a while and only the Loading… (icon) can be seen on the page.
    Is this a known problem with Captivate projects published to html5 and is there a way to fix it? What is wrong?
    Test the html5 version of this project at: http://kurs.dokker.no/captivate/
    and see for yourself what happends.

    I changed the Preferences/Project/Start and End  Preloader % to 25 and published the projects again. The course: http://kurs.dokker.no/captivate/elev/
    stopped like before on one of the first slides, loading… screen like before in IE11.
    In Chrome v. 37.0 the course worked badly, would not run, sound missing and buttons not working.
    In Firefox 31.0 the course worked to a degree even if the program was advising to use another browser for this content.
    In Opera 23.0 sound was missing and else working as bad as IE.
    All this testes is done on a PC using Windows 8 connected på internet via ethernet, download speed: 66.57.
    I would like to use the HTML5-format since it has a cleaner view than swf-files that appear to be jagged, but there is a lot missing before Adobe Captivates html5 publish is where it needs to be. Her are the complete html5 course and here are the swf based course for comparison.

  • Help - weird graphic "flash" in published file

    I have several published Captivate files I have
    imported into a Lectora file delivered via our LMS. When entering a
    page that contains a movie, I'm seeing this weird green graphic for
    a split second, then the movie begins to play. The graphic looks
    like a grid of navigation buttons - next, back, refresh, mute, etc.
    It's only happening on pages that contain a Captivate movie.
    Nowhere in my Captivate files or my Lectora file do I have a
    graphic that looks like this.
    Any ideas as to what's happening and how I can get rid of it?
    Thanks in advance for any help!
    Rachel

    Hello,
    If I do understand your question all right (sorry, am not a native English speaker), I do believe you are mixing up two things. If you want indeed to publish to PDF (and not to SWF or EXE), you'll get a multimedia PDF (in which a SWF can play) but in that case the user really do need the Adobe Reader 9, previous versions do not support multimedia PDF.
    What seems a bit contradictory is that you start with mentioning an issue with a PDF that should be called from a CP-slide. The problem there could be that you were linking to an absolute path on your PC when browsing, can you check that? If you introduce simply the name of the PDF and you make sure that the PDF and the CP-published files (normally HTML, JS and SWF) are uploaded in the same folder, the CP will find the PDF. I think you now have a 'broken link' because of an absolute path reference for the PDF.
    Lilybiri

Maybe you are looking for

  • Creative zen microphoto booting probl

    My creative zen microphoto wont load. It's just a black screen with the creative logo. I have tried to format it from the recovery mode but that freezes too. Can anyone tell me any possible solutions to this problem?

  • How to find Past 14 days average of time(hh:mm:ss) format in obiee

    My table has columns Loaddate, Runtime, 14day_Avg. It looks like : Loaddate Runtime 14day_Avg 8/02/2012 8/02/2012 11:19:50 AM ? 10/02/2012 10/02/2012 01:29:40 AM ? 20/02/2012 20/02/2012 07:10:58 AM ? For this 14 day avg of third row( 20/02/2012) shou

  • Xi business process

    Dear experts Thanx in advance........ who will design SLD???is tht is XI consultant????? regards somesh

  • My contacts are disappearing.

    I am going isane with my iphone, god ****!! My contacts come and like they please, If searche for a specific contact it never comes up but if remember a contact number and type in on my phone, the contacts comes up!!! ***, Whats wrong i have had ipho

  • Problem with camera web

    Hello:I have a problem on a camera web. I have a camera web creative, I believe that the pattern in it is PD00 that should already have about 3 or 4 years. My problem is the following one: I have windows xp servant pack 2 installed, and I begin to in