Captivate 7 - Published file plays in HTML5 but not in SWF

I have a project that I've published in both SWF and HTML5. I'm assuming that the browser reads which version to play. The project will play on my iPad, but not on my computer using Chrome or IE. I have published other projects with no problem. What could cause this one not to work?

The code you have posted is not the same code as used in:
<div id="gallery">
in the link above.
The reason that the Flash is not displaying in FF is that the portion of the code used by FF was omitted. The code currently used on the page only works in IE.
I'm no great fan of the IE conditional statements used in the code you posted so I don't blame you for not using it. But you do need to provide something for FF.... the old, out dated method would be to add and <embed> for FF... here's the newer method..
So either use code you posted above or better yet, get rid of that and replace the current <object> with
<div id="gallery">
<object id="FlashID" data="flash/201.swf" type="application/x-shockwave-flash" width="958" height="242">
   <param name="movie" value="flash/201.swf">
   <param name="quality" value="high" />
     <param name="wmode" value="opaque" />
     <param name="swfversion" value="6.0.65.0"/>
</object>
</div>
Give that a try. Will work in both FF and newer IE versions.
Best wishes,
Adninjastrator

Similar Messages

  • HDV file plays in VLC but not Quicktime?

    I have a 3 minute video, shot in 30fps HDV and exported to an HDV (1080i60) Quicktime File (.mov). The file plays great with VLC, but Quicktime tells me a component is missing. It plays the audio, but no video shows. Even if I download whatever component I need (I am not sure what I would need), this is for a client, and they would have to do the same thing, presumably. Could it have been something in my Compressor settings?

    If you have FCP, you should have the HDV codecs. If you do an they won't play this, then it is possibly some other odd format. The non-standard image size points to something wacky going on.
    x

  • Lines or guides showing up in published files on mobile devices but not on computers

    Guides or fine lines are showing up in published files on mobile devices.  See http://townmarket.businesscatalyst.com/services.html
    Look below the headings Printing Services and Direct Mail Services.  This is happening on other pages as well. 
    Does not show up on computers, just mobile devices.

    Here are pics showing lines.

  • FLV files plays in preview, but not showing up on my LMS

    I have imported a single .flv file into Captivate 4, which was created in Flash 8. It shows in preview mode, as well as when I preview in IE browser, but when I launch from my LMS, I get nothing on the page. I can embed an .swf  video file that was published out in Flash 8, and when I embed that into Captivate 4, it plays fine in preview mode and in my LMS. I have tried using different settings in Flash to render out the same video and nothing has worked. Any thoughts?

    Jp,
    Thanks for the info. I did check with Tech Support from the LMS, and they assured me that the LMS does support .flv files. However, our online modules are launched from a webserver separate from the LMS, and that server needed to have the proper MIME type configured. By default, Windows 2003 Server does not have an associated MIME type to support deploying FLVs.
    Specifically, it needed to be set up to recognize .flv files with the correct file association and content type specified. That took care of it.
    Thanks,
    Steve Sieberts
    Instructional Designer
    Education and Workforce Development Branch
    Kentucky Department for Public Health
    275 E. Main St.
    Frankfort, KY 40621
    Phone: 502-564-4990 x3789
    Fax:     502-564-2626
    [email protected]
    "The price of success is hard work, dedication to the job at hand, and the determination that whether we win or lose, we
    have applied the best of ourselves to the task at hand."
    - Vince Lombardi
    NOTICE OF CONFIDENTIALITY:  This e-mail, including any attachments, is intended only for the use of the individual or entity to which it is addressed and may contain confidential information that is legally privileged and exempt from disclosure under applicable law.  If the reader of this message is not the intended recipient, you are notified that any review, use, disclosure, distribution or copying of this communication is strictly prohibited.  If you have received this communication in error, please contact the sender by reply e-mail and destroy all copies of the original message.

  • Swf file plays in IE8 but not Firefox or Safari

    I've inserted an swf file in my webpage using Dreamweaver CS4's Insert/Media/swf function. It plays fine in IE8 but won't work at all in Firefox or Safari. I can view flash files in other websites using these browsers and I've updated my version of flash so I can only put it down to a coding thing. Website is www.201.com.au and the Dreamweaver code follows. Any suggestions??
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="958" height="242" id="FlashID" title="201_Gallery">
          <param name="movie" value="../flash/201.swf" />
          <param name="quality" value="high" />
          <param name="wmode" value="opaque" />
          <param name="swfversion" value="6.0.65.0" />
          <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
          <param name="expressinstall" value="../Scripts/expressInstall.swf" />
          <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
          <!--[if !IE]>-->
          <object type="application/x-shockwave-flash" data="../flash/201.swf" width="958" height="242">
            <!--<![endif]-->
            <param name="quality" value="high" />
            <param name="wmode" value="opaque" />
            <param name="swfversion" value="6.0.65.0" />
            <param name="expressinstall" value="../Scripts/expressInstall.swf" />
            <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
            <div>
              <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
              <p><a href="http://www.adobe.com/go/getflashplayer"> <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
            </div>
            <!--[if !IE]>-->
          </object>
          <!--<![endif]-->
        </object>

    The code you have posted is not the same code as used in:
    <div id="gallery">
    in the link above.
    The reason that the Flash is not displaying in FF is that the portion of the code used by FF was omitted. The code currently used on the page only works in IE.
    I'm no great fan of the IE conditional statements used in the code you posted so I don't blame you for not using it. But you do need to provide something for FF.... the old, out dated method would be to add and <embed> for FF... here's the newer method..
    So either use code you posted above or better yet, get rid of that and replace the current <object> with
    <div id="gallery">
    <object id="FlashID" data="flash/201.swf" type="application/x-shockwave-flash" width="958" height="242">
       <param name="movie" value="flash/201.swf">
       <param name="quality" value="high" />
         <param name="wmode" value="opaque" />
         <param name="swfversion" value="6.0.65.0"/>
    </object>
    </div>
    Give that a try. Will work in both FF and newer IE versions.
    Best wishes,
    Adninjastrator

  • Wma files play on Mac but not in iTunes?

    Hi
    I have a few .wma music files which play great in the Finder (the usual set of music controls in the preview window) and also in QuickTime, but I can't get them into iTunes where I want them.
    Since the Mac has various ways it recognises and plays these files, it must be a simple matter to get them into iTunes, no? Trouble is, the (no doubt) obvious answer hasn't hit me yet!
    (The long-winded way would be to output the music from QuickTime on the headphone socket of the Mac and record it on my hi-fi minidisc, then record it back to iTunes via Griffin iMic, but that seems like a sledgehammer to crack a nut, as well as losing something from two further sets of compression, WMA > ATRAC > AAC).
    Anyone help?

    The "long-winded way" isnt' necessary if you're willing to spend a bit of money. You can convert them with EasyWMA or with QuickTime Pro and the Flip4Mac import codec (not the free version) and so save a few steps and conversions.

  • 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

  • I'm trying to install adobe acrobat XI pro, the trial version. The Install Download Assist pops up but the program doesn't install. I do see a file named XI Pro, but not a program. It seems the program never completely downloads. Any suggestions? Thanks.

    I've tried to download the trial version of Acrobat XI pro but it's not working. The time bar is active for the download and indicates that it will take two hours. When I come back, the screen has gone back to the "install free trial here" page. I do see a file for XI Pro, but not a program.

    try a direct download,
    Downloads available:
    Suites and Programs:  CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5 | 4 | 3
    Captivate:  7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • How can I move movies from my computer to my iPad? They will play in quicktime but not iTunes

    How can I move movies from my computer to my iPad? They will play with quicktime but not iTunes so I can't sync them

    Th AVPlayerHD works well for playing other video types.  You can transfer the videos via USB in the app tab in iTunes on your computer.  When you open that tab when you have you iPad connected to the computer scroll down and you will see apps listed on the left and a blank on the right.  Click on the app and then click on the add button under the blank window on the right.  Then navigate to the video you want to play and it will transfer it to the iPad.  I have about 14 movies on mine using AVPlayerHD.  works very well.  Also have VLC player (before it was yanked from the app store).  Works about the same.
    You can also get the app Air Video and stream the video to from your computer to the iPad, and even have Theo ad connected to the tv to watch on there.  I do that all the time with my iPhone.  Saves time with not having to sync movies all the time.

  • HT1473 Help I just moved my music files to a external hard drive and am using the new crappy version ( i know my opinion) of itunes and cant add the files to my libray it gives me the add file to library option but not the add folder to library option wha

    Help I just moved my music files to a external hard drive and am using the new crappy version ( i know my opinion) of itunes and cant add the files to my libray it gives me the add file to library option but not the add folder to library option what am i doing wrong?

    In iTunes 11 uncheck the preferences setting in in the iTunes Preferences panel "Advanced > Copy Files to iTunes Media folder when adding to Library"

  • ITunes purchased song plays in iTunes but not on iPod

    I have purchased several songs from the music store. One of the songs will play in iTunes but not on my iPod. I've removed the song several times from the iPod and resynced with iTunes, but the song still cuts out in the middle of the song. What should I do?

    If it's just a problem with that song, I would contact the customer service who may authorize another download.
    http://www.apple.com/support/itunes/store/download/#form

  • Music video plays in itunes but not on ipod

    hi
    like my subject line states, i transferred a whole bunch of music videos off of dvd into mp4 format using videora.
    they play in itunes but not on my ipod.
    i transferred about 400 or so at the same time to ipod do you think that's why most of them won't play ?
    should i do it one by one ?
    thanks.

    it's more than just the mp4 format. They need to be encoded correctly with the right dimensions and other attributes as well. I don't bother with this sort of thing right now. If there is anyone who has these specs, just post them here. Otherwise, you can always google them or search these boards for the proper format/size/encoding.

  • After using video capture device to copy VHS to DVD, burnt DVD will play on computer but not

    After using video capture device to copy VHS to DVD, burnt DVD will play on computer but not on DVD player. Tech support for the VCD said my HP DVD burning software has to burn "DVD Video and not DVD data" and to check with HP. How can i check myself.

    Grahamster, welcome to the forum.
    I recommend trying CDBurnerXP for burning video CD's.  I have been using it for years without a glitch.  I use it mainly for burning ISO's, but have used it for all types.  Please let us know if it works or not.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Unable to open PDF files with Adobe Reader, Mac trying to open files with Quicktime instead, but not succeeding. HELP!

    Unable to open PDF files with Adobe Reader, Mac trying to open files with QuickTime instead, but not succeeding. HELP!

    Hi BDAqua,
    Thanks for the info, I dragged a PDF to desktop ctrl-, get info. change all to open with adobe.
    Problem solved, many thanks for a quick response.
    Barry69

  • How do I save a scan file in OS X Maverick? The file can be saved, but not readable.

    How do I save a scan file in OS X Maverick properly? The file can be saved, but not readable.

    I've never had a problem with that. What does the error message say when you try to open it?

Maybe you are looking for

  • File Error:Unknown File.

    I am getting a "File Error:Unknown file" when i try and save my project. So i am not able to save any changes i make to my project. any thoughts?

  • WARNING 5656 ?   What is this?

    What does this error mean? The list of error codes in the Reference Guide skips this error number. The name of the suffix we were attempting to load was 'partner'. [10/Jun/2005:20:48:33 -0500] - WARNING<5656> - Mapping Tree - conn=621 op=6 msgId=7 -

  • Two address for one company code

    Hi SAPians, I have a doubt in maintaining company address for Invoice output! Is it possible to maintain two Address for one company code? Like if XYZ company code and say it has has two customers AB and CD. Then if i want to maintain Company address

  • Link not Reachable in Etester

    Hi When i playback a script with "test the frame" as enabled, one of my pages fail and when i get to the frame properties for the reason, it shows as "Link Not Reachable". What is the property that the tool is checking here that is the failing? Thank

  • Satellite Pro P100 - Can't connect to Internet via LAN

    I have a Toshiba Satellite Pro P100. Model No SPSA4A-005002 I used my recovery disk and wiped my computer, because of a virus and now I cant connect to the internet via cable but my wireless internet works perfectly. Its completely dead there are no