No audio when published to HTML 5

Hello,
Im using Captivate 7.  I have a project with a video that has audio in the video, and also a couple small audio clips that are all on different pages, these are activated through an click button.  The problem is when I publish to HTML 5 I lose all audio.  The audio in the video is gone and the audio on the buttons is gone.  If I publish to SWF all the audio is available and working correctly.   It does not matter if I play the HTML on a mac, pc, ipad, etc etc there is no sound.   The thing that is really stumping me is when I play the project through captivate the audio is correct, it is just when I publish all audio is gone.
Any ideas?
Thanks,

MMDENT,
I did not have audio attached to an image.  The audio was 3 slides in and was a youtube streamed video an advanced action for when correct they got a clapping sound.
The corrupt image came from the preloader image.  File>project info>start and end.
The way I found this was by going through each property one by one until issue was found.

Similar Messages

  • EMERGENCY! All site content disappearing when publishing to HTML

    When publishing to HTML, ALL content on the site (inclusive of header nav and footer content) is disappearing. Only the browswer image is visable. http://www.brainstormsuccess.com
    I quite Muse. Dumped cache. Rebooted. Have tried creating new layers and copy and pasting content. Nada.
    Some are seeing: MuseJSAssert: Error calling selector function: TypeError: Object [object Object] has no method 'toBrowswerWidth'
    ISSUE RESOLVED: Truncated line of Java script in the header.

    Hi,
    The site seems to be working fine on my end. Please refer to the following screenshot :
    Please try in a different browser.
    Regards,
    Aish

  • Problem in preloader when published to HTML.. help..

    i have this application which has a preloader, when i try to publish it in html the preloader automatically sets to 100%, i need play the application first before i can see it load,
    is there a setting in here which i can set the preloader to run automatically?
    tnx..

    Here's my screenshot, preloader is at the 1st frame, when reached 100 it must run on to the next frame,
    when published in html it doesnt automatically run the preloader, i need to play it first..
    tnx

  • Urgent problem, somwthing disappear when publish to html

    Dears, i published my application to html file, the big problem, but somethings disappear from html, and the .swf file and .exe are working correctly.
    and my device has flash player 10, flash cs3, IE7, googlechrome, firefox and finally i founded that it works on some devices and others no.
    so if that in flash publishing settings, or something un my device/browser settings ?
    thank you very much in advance,

    Here's my screenshot, preloader is at the 1st frame, when reached 100 it must run on to the next frame,
    when published in html it doesnt automatically run the preloader, i need to play it first..
    tnx

  • No audio when published

    I'm a newbee and can't figure out why there is no audio
    output when I publish a file in which the preview works great. I
    made the .cp file from a template I downloaded from Adobe.
    Everything seems OK until I try to publish it.
    Any help would be gratefully appreciated.

    Welcome to our community, Evergreen
    When you click the Publish button you should see the Publish
    dialog. Click the Preferences... button on the right side. This
    should display the Preferences dialog at the Project > Settings
    node. On this dialog is a check box near the bottom that is
    labeled: "Include audio when project is generated"
    If the check box is clear with no check mark, that's likely
    the issue. Click to place a check mark there and you should be set.
    Not sure what to advise if it has a check mark in it. Perhaps
    try fiddling with other settings and test.
    Cheers... Rick

  • Choppy audio when publishing for review - Captivate 4

    I dig the review feature -- but, when I tried to publish a
    project for review, the result plays back rather choppy.
    Practically all of the audio (and there's a lot of it) is chopped
    at the beginning and somewhat throughout.
    Is anyone else having a similar problem?
    Joe

    Try following this link:
    http://bdld.blogspot.com/2009/03/fixing-sound-in-adobe-captivate.html[L=Link
    to BLOG on this issue]
    There were some audio issues in the CP4 release on some
    machines. In many cases it seems to be Vista machines. There is a
    replacement audio driver available per the above.
    If you have VISTA-64, then you must run as ADMIN and you must
    register the control with regsvr.
    I am still having some choppy audio issue on my XP and Vista
    machines. The developers have been working on this issue and we are
    [all] hopeing for a patch soon.
    Hope that helps you.
    Joe C.

  • ComboBox prompt disappears when published to HTML

    I am creating a form which contains four ComboBox components. I have defined the "prompt" property for each of these ComboBox components using the Component Inspector. The only real difference between these four ComboBox components is how their dataProvider property is defined.
    Two of these components use DataProvider objects which I have defined using Actionscript. I defined the dataProvider property for the other two ComboBox components using the Component Inspector.
    My problem is that when I publish the Flash movie to HTML, the prompts disappears for the two ComboBoxes whose dataProviders I defined using Actionscript. The prompt remains visible for the two ComboBoxes whose dataProvider property I defined in the Component Inspector. I should also mention that prompts for all four ComboBoxes appears just fine when I just publish to Flash.
    I have tried correcting this by setting the "prompt" property using Actionscript but the result is the same.
    Thanks in advance for any suggestions on how this may be corrected

    I finally found a solution to my problem, however, I am not entirely sure I understand why the problem is there in the first place.
    One of the things I did not mention in my original post, is that the DataProvider objects for the ComboBoxes are populated with XML from an external file which I am loading via a URLLoader object.
    I originally had set the style of the ComboBox components within the same function that I am using to load the XML (I have called this function "init"). When the XML is loaded, I call another function to populate the DataProvider object for the ComboBoxes with XML. For some reason, I have to set the style of the ComboBox components again within that function otherwise it is as if there were no styles applied. The following code demonstrates my problem. I added in the timer function just to help demonstrate the issue, namely that the style set in the init function only applies until the DataProvider object is created and assigned to the ComboBox.
    import fl.data.DataProvider;
    var cbTextFormat:TextFormat;
    var xmlStatesLoader:URLLoader;
    var xmlStates:XML;
    var dpStates:DataProvider;
    function init():void {
    //load data for states selection list
    xmlStatesLoader = new URLLoader();
    xmlStatesLoader.load(new URLRequest("states.xml"));
    xmlStatesLoader.addEventListener(Event.COMPLETE, onComplete);
    xmlStatesLoader.addEventListener(IOErrorEvent.IO_ERROR, errorHandler);
    //set the text format for ComboBox text fields
    cbTextFormat = new TextFormat();
    cbTextFormat.color = 0x0000FF;
    cbTextFormat.font = "Arial";
    //set style for cbOne ComboBox
    cbOne.textField.setStyle("textFormat", cbTextFormat);
    cbOne.textField.setStyle("embedFonts", true);
    function onComplete(e:Event):void {
    //notice that the prompt is displayed until the timer runs out and the onTimerComplete function is called
    var myTimer:Timer = new Timer(1000, 3);
    myTimer.addEventListener(TimerEvent.TIMER_COMPLETE, onTimerComplete);
    myTimer.start();
    function onTimerComplete(e:TimerEvent):void {
    xmlStates = new XML(xmlStatesLoader.data);
    dpStates = new DataProvider(xmlStates);
    cbOne.dataProvider = dpStates;
    cbOne.prompt = "Loaded";
    //uncomment the following lines to fix error
    //cbOne.textField.setStyle("textFormat", cbTextFormat);
    //cbOne.textField.setStyle("embedFonts", true);
    function errorHandler(e:IOErrorEvent):void {
    trace("XML Loading Error: " + e);
    init();

  • Widget (interaction) size and font issues when published in HTML 5

    I'm using Captivate 7 and when I create and preview widget interactions (accordian, tab, etc.) the sizing and font look correct. However, when I publish it to HTML 5, it is not the right size, is left justified rather than centered, and does not have the custom font (defaults to Arial).
    Is there anything I can do to fix this? Please help!

    Adobe writes inline css for the font on that widget, in the CPM.js file. You's have to create a new class and and write your own rules using @font-face to ensure end-users can use the font. SWF files can embed fonts, but html does not.
    If the user doesn't have to font you use it will default.
    This is an example of how the Header title and instruction of the widget is written:
    <headerTitle><font face="Arial" style="Arial" size="23" align="LEFT"/>
              <textDecoration bold="true" underline="false" italic="false"/>
              <color textColor="0xffffff" highlightRequired="false" highlightColor="0xffff99" highlightState="false"/>
            </headerTitle>
    <headerInst><font face="Georgia" style="Georgia" size="14" align="LEFT"/>
              <textDecoration bold="false" underline="false" italic="true"/>
              <color textColor="0xb9dff6" highlightRequired="false" highlightColor="0xffff99" highlightState="false"/>
    </headerInst>

  • IMovie '11 problem with audio when publishing to youtube or exporting, help

    I recently got iMovie '11 and its kinda buggy. One problem is when you try to publish a long (above 1 min.) the audio periodically skips forward in the video, but when you play it directly from imovie there is no problem. is there a way to fix this or get around it, because it is super annoying.

    I have been having the same problem. I have been using a PC for the past 5 years and using Pinnacle Studios, I had a Mac before using the PC but never owned one , I finally bought one during Thanks giving and started working on my next video on iMovie. Everything runs great but when you play back the video on imovie without moving the mouse or pausing it , some areas of the video itself, NOT THE SONG, will be cut off but when i put the mouse over the clip that has sound its there!!! What i finally did was import the video to my pc find every clip that had missing sound and put the sound in one by one. and all videos are the same file! if you want to see the that had missing audio here it is:
    http://www.youtube.com/watch?v=gpoiLjcpl00
    heres the video after i fixed everything:
    http://vimeo.com/17393739
    let me know what u guys think! please!

  • Getting a black screen when publishing in html or preview in browser

    Hi,
    Can anyone help. I am trying to publish a file that I converted from a captivate 4 file. It si a basic file with click boxes, captions and failure boxes. i also have 2 introductory slides with a slide BG, and animated text. (I need to go back and read that post about that). Can anyone help solve this problem? I cannot even preview via browser from withing c5.
    Thanks for looking!

    Try updating your Flash Player to the latest version.
    This black screen issue was first discovered several months ago after the first Flash Player 10 release.  It was caused by a conflict between the new Flash Player and Text Animations in Captivate.  Adobe issued a patch for Captivate 5 that required republishing content to fix the conflict.
    http://www.adobe.com/support/captivate/downloads.html
    Newer versions of Flash Player do not result in the same conflict, but you should still patch Captivate 5 and republish to be safest.

  • What happens when publishing both SFW and HTML5?

    I am publishing courses that will be used for both mobile devices (iOS and Android tablets) and computers. Most of the learners will access these by computer. When publishing to HTML, browser compatibility and performance are a challenge. I would prefer computers playback in Flash and mobie devices default to HTML 5.
    What exactly happens when I publish using both formats? Will the browser support be detect and launch and deliver the most compatible training?
    I'm also curious of any best practices used by others.
    Any help is much appreciated,
    Jon

    Yes, that is exactly what happens. It first detects mobile devices then the swf as a fallback. Some people have had to add other user agents as this is what Captivate checks for:
    ["blackberry","android","iphone","ipad","symbian","smartphone","ios","windows ce","webos"];

  • Desktop wallpaper published to HTML in Flash

    How do I change the alignment of the published html file on
    my Desktop when displaying on single monitor?
    I created a 1024 x 768 image in Photoshop; saved it as PNG
    file and imported it in Flash 8. I added a few buttons to it and
    published the file in SWF and HTML so that I could use the HTML
    file as my Desktop background. The published file size is also 1024
    x 768. When I apply the HTML file as my desktop background, the
    image on the desktop is pushed down and right leaving a 1/4" border
    at the top and left side of the screen, cutting off the bottom and
    right side of the image. However, when I publish the file in
    animated GIF or just set the PNG image as my Desktop background,
    they align correctly on the Desktop. I only experience this issue
    when publishing to HTML from Flash. When I extend my Desktop to
    dual monitors, the HTML wallpaper is aligned properly on the left
    monitor (does not extend to the monitor on the right).

    Just searched and found the answer by orangetractor.
    The getURL command works, but not offline. Upload files to
    server and test; it works then.
    getURL("pagename.html#anchorname");
    anyone else think its weired that it will work online and not
    off?

  • SWF plays in preview but not when published

    I have seen similar issues posted but none dealing with this
    precise problem. I have two SWFs, one of which loads at the end of
    the other. When SWF 1 is played back in Flash or when published in
    HTML format, SWF2 plays as is should. When SWF is exported to
    another program (e.g. Frontpage or Ektron, CMS), SWF2 will not
    play. Interestingly, when SWF2 is exported to the other program on
    its own, it plays fine so font support is not an issue.
    I have also tried altering the level in the LoadMovieNum
    script (0, 1, 2) as well as republishing both SWFs from the
    original FLA file. So far zippo.
    Any ideas??

    At least on my side it only plays the first video and does not progress.  There are twenty-five videos after this, they are all very short  but they progress.   Is this progressing for you?  Perhaps it is my computer if so. Please let me know.
    Thanks again,
    Mark.

  • FrameMaker 11 omits embedded pictures when publishing to epub 3

    I am trying to publish a book containing multiple embedded pictures to epub 3, but for some reason the FrameMaker 11 omits the pictures when running the publish script. The pictures also disappear when publishing to html help, but not when merely publishing to pdf. What may be wrong?
    I am running TC4 on win64 with everything updated

    What's the graphics file format of the imported image files?
    What conversion have you specified for the output, assuming that ePub workflow is similar to XML and HTML, where image destruction is controlled by:
    File > Utilities > HTML Setup
    [ Options \... ]
    File Format for Images:
    (_) GIF  (_) JPEG  (_) PNG
    {any new choices in FM11?}
    And since FM converts image formats for some workflows, those files have to reside somewhere, so access and permission problems could arise.

  • Background audio not adjusting after project is paused when published to Flash. Any suggestions?

    Hello,
    I'm working with:
    Captivate 6
    Mac OS X 10.8.2
    Flash Player is updated to most recent version
    My project contains background audio music set to adjust to slide audio. When I publish to Flash the background audio adjusts appropriately until I pause the video and then resume. Once the video resumes the background audio no longer adjusts to slide audio. So basically anytime a learner pauses the video and then resumes the background audio drowns the slide audio out. I've tried this with multiple projects and get the same result.
    When I publish in HTML5 it works fine. But I cannot use HTML5 because my project contains necessary rollover objects and captions, slide transitions, text animations, and other effects that HTML5 does not support.
    I've to remove and re-add the background audio, uninstall and reinstall Captivate, adjust the background and slide volume levels, uncheck loop audio, and pretty much any audio settings and publish settings I can think of.
    Can someone else with the same OS and Captivate version try and see if they encounter the same problem when publishing to Flash?
    Or does anyone have a solution/workaround?
    Thank You!

    Hi folks
    Sorry, I don't have a fix to offer. Only an observation. I'm rather surprised to see this many folks actually USING background audio. I say that, because I have facilitated hundreds of Captivate classes over the years. And there are lots of folks with Instructional Design background that attend. And in so many of the classes, when we reach the audio section and we cover how to use Background Audio, the same comment is made.
    The comment is that generally speaking, it is their opinion that from an Instructional Design standpoint, background music is a "no no" and should be avoided because it detracts from the learning objective.
    Perhaps the link below will help.
    Click here
    Cheers... Rick

Maybe you are looking for