Keynote, Firefox, Chrome & IE Question...

I have exported a presentatin I created and uploaded it to my site and it only works in Safari.  I have read that the animations and what not are limited in any other browser but Safari, but can't seem to find much info on it.
Does anyone have more details on what works and what doesn't with the HTML exported versions of Keynote presentations in any other browser than Safari?
Thanks,
-Ry-

Exporting to html only creates a very basic  "slide show" that will run on a web page which moves from the first slide to the last in order, nothing more. If you need to build web page, you need to use an html authoring application; iWeb if you have it or buy Dreamweaver.

Similar Messages

  • Facebook images, profile photos, cover photos are not loading. Only small blue square with question mark. Same thing in Safari, FireFox, Chrome.

    Since July on MacBook Pro facebook images, profile photos, cover photos are not loading. Only small blue square with question mark. Same thing in Safari, FireFox, Chrome. Everything is up to date including last version of Adobe Flash. And watching YouTube also a problem. Video is skipping, freezing for few seconds and jumps forward. At the same time on Toshiba with Windows Vista under the same account, same wi-fi connection everything works fine.
    Please help with sugesstions to fix the issue.

    Seems like problem is solved but it might be temporarily. Anyway. Click on the image, it will open facebook photo browser. Image is not loading so right click on the blue box with question mark, save image as. It will start downloading but without any success since browser do not see the image. After this attempt refresh the page and close all tabs with facebook. Try to open facebook once again. For some reason after this weird actions all images displayed properly. Do not know for how long but now it works.

  • Problem with jquery slide show conflict with vertical navigation menu in Firefox & Chrome

    Problem with jquery slide show conflict with vertical navigation menu in Firefox & Chrome. Works in IE. This is my first time trying to post a question - so please be kind. I am also not good with code and am finding css a real challenge after learning to design based on tables. I'm using CS5.
    The "test" page with the slide show is: http://www.reardanwa.com/index-slides.html   The same page without the slide show is http://www.reardanwa.com/
    I realize the images are not ideally sized - I'll fix those once I get the pages to function.  Maybe I need a different slide show? I would prefer a widget that I can modify to required size & postition. Again - I'm not good at building with code from scratch.
    The problem is the naviagation links that are directly next to the slide show do not work in Firefox of Chrome. They do work in IE.
    I've read about using jQuery.noConflict(); code but can't figure out the correct way to use it in my case or whether that's even part of the solution. I know my code is not well organized as I have cobbled together from various sources in an attempt to format the page the way the client wants it. Also, FYI, I will eventually try to make the page work in Surreal CMS.
    I've spent sevaral days over the last several weeks trying to solve sth slide show/navigation conflict - so any specific light you can shed will be much appreciated.
    Thanks in advance.
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Reardan Area Chamber of Commerce</title>
    <meta name="description" content="home page for Reardan Area Chamber of Commerce" />
    <meta name="keywords" content="Reardan WA, chamber of commerce" </>
    <script src="scripts/jquery-1.6.min.js" type="text/javascript"></script>
    <script src="scripts/jquery.cycle.all.js" type="text/javascript">  </script>
    <script type="text/xml">
    </script>
    <style type="text/css">
                                  #slideshow { 
                                      padding: 10px;
                                            margin:0; 
                                  #slideshow-caption{
                                            padding:0;
                                            margin:0;
                                  #slideshow img, #slideshow div { 
                                      padding: 10px;
                                      background-color: #EEE;
                                      margin: 0;
    body {
              font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
              background: #004B8D;
              margin: 0;
              padding: 0;
              color: #000;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
              padding: 0;
              margin: 0;
    h1, h2, h3, h4, h5, h6, p {
              margin-top: 0;           /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
               /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    .left
    position:absolute;
    left:0px;
    .center
    margin:auto;
    width:95%;
    .box
              position:relative;
              left:-90px;
              width:950px;
              height:350px;
              border-radius: 13px;
        -moz-border-radius: 13px;
        -webkit-border-radius: 13px;
              z-index:1000;
    .slide{
        position:absolute;
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
              border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
              color: #42413C;
              text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
              color: #6E6C64;
              text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
              text-decoration: none;
    /* ~~this fixed width container surrounds the other divs~~ */
    .container {
              width: 960px;
              min-height:900px;
              padding:5px 0px 0px 0px;
              background: #E8F8FF;
              margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
              background: #E8F8FF;
              padding:10px 5px 0px 5px;
    .sidebar1 {
              float: left;
              width: 225px;
              margin: 60px;
              color: #FFFF0D;
              background: #595FFF;
              border-radius: 13px;
        -moz-border-radius: 13px;
        -webkit-border-radius: 13px;
              padding: 5px 5px 0px 5px;
        border: 3px solid #F7F723;
        z-index:-1;
    .sidebar2 {
              float: left;
              width: 275px;
              color: #FFFF0D;
              text-align: left;
              background: #595FFF;
              padding-bottom: 10px;
              border-radius: 13px;
        -moz-border-radius: 13px;
        -webkit-border-radius: 13px;
        border: 3px solid #F7F723;
        z-index:2;
    .sidebar3 {
              float: left;
              width: 275px;
              color: #FFFF0D;
              text-align: left;
              background: #595FFF;
              padding-bottom: 10px;
              border-radius: 13px;
        -moz-border-radius: 13px;
        -webkit-border-radius: 13px;
        border: 3px solid #F7F723;
        z-index:3;
    .content {
              padding: 0px 0px 0px 0px;
              width: 780px;
              float: left;
              background: #E8F8FF;
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol {
              padding: 0px 15px 5px 10px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
    /* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
    ul.nav {
              list-style: none; /* this removes the list marker */
              border-top: 0px solid #FFFF66; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
              margin-bottom: 50px; /* this creates the space between the navigation on the content below */
              font: Arial Black, Verdana, , Helvetica, sans-serif;
              font-size:1.3em;
              font-weight:bold;
              z-index:2;
    ul.nav li {
              border-bottom: 0px solid #FFFF66; /* this creates the button separation */
              font: 120%/1.4 Arial Black, Verdana, , Helvetica, sans-serif;
    ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
              padding: 3px 0px 5px 0px;
              display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
              width: 185px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
              text-decoration: none;
              color: #FFFF0D;
              background: #595FFF;
    ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
              background: #595FFF;
              font: 120%/1.4 Arial Black, Verdana, , Helvetica, sans-serif;
              color: #FFFFFF;
    /* ~~ The footer ~~ */
    .footer {
              padding: 10px 0;
              background:  #595FFF;
              color: #FFFF0D;
              position: relative;/* this gives IE6 hasLayout to properly clear */
              clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
              float: right;
              margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
              float: left;
              margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
              clear:both;
              height:0;
              font-size: 1px;
              line-height: 0px;
    -->
    </style>
    </head>
    <body>
    <div class="container">
      <div class="header"><!-- end .header -->
      <a href="#"><img src="images/Chamber-Logo-2.gif" alt="Reardan Chamber Logo" width="187" height="163" hspace="10" vspace="5" align="top" /></a><img src="images/Reardan-Chamber-Title.gif" width="476" height="204" alt="Reardan Area Chamber of Commerce, Dedicated to Preserving and Enhancing Area Businesses" /><p></p>
      <p style="color: #F00">This Site is under construction! Please pardon our dust as we create!</p>
      </div>
      <div class="sidebar1">
        <ul class="nav">
          <li><a href="about.html">About Us</a></li>
          <li><a href="history.html">Reardan History</a></li>
          <li><a href="activities.html">Activities</a></li>
          <li><a href="business.html">Business<br />
            Directory</a></li>
          <li><a href="about.html">Join the<br />
            Chamber</a></li>
           <li><a href="links.html">Links<br />
      <span style="font-size: 85%">Tourism</span><br />
          </a></li>
        </ul>
         <!-- end .sidebar1 --></div>
    <br />
    <br />
    <br />
    <br />
    <div class="box" +"slide">
      <script type="text/javascript">
    // BeginOAWidget_Instance_2559022: #slideshow
                               slideshowAddCaption=true;
    $(window).load(function() {
      $('#slideshow').cycle({
                        after:                              slideshowOnCycleAfter, //the function that is triggered after each transition
                        autostop:                              false,     // true to end slideshow after X transitions (where X == slide count)
                        fx:                                        'blindX',// name of transition effect
                        pause:                              false,     // true to enable pause on hover
                        randomizeEffects:          true,  // valid when multiple effects are used; true to make the effect sequence random
                        speed:                              100,  // speed of the transition (any valid fx speed value)
                        sync:                              true,     // true if in/out transitions should occur simultaneously
                        timeout:                    5000,  // milliseconds between slide transitions (0 to disable auto advance)
                        fit:                              true,
                        height:                       '300px',
                        width:         '525px'   // container width (if the 'fit' option is true, the slides will be set to this width as well)
    function slideshowOnCycleAfter() {
              if (slideshowAddCaption==true){
                                  $('#slideshow-caption').html(this.title);
    // EndOAWidget_Instance_2559022
      </script>
      <div id="slideshow">
        <!--All elements inside this will become slides-->
        <img src="images/100_1537.jpeg" width="600" height="450" title="caption for image1" /> <img src="images/Parade-2011-2.jpg" width="300" height="225" title="caption for image2" /> <img src="images/100_1495.jpeg" width="600" height="450" title="caption for image3" />
        <div title="sample title"> Images for slide show will need to be re-sized to fit box to avoid distortion</div>
        <img src="images/beach4.jpg" width="200" height="200" title="caption for image4" /> <img src="images/beach5.jpg" width="200" height="200" title="caption for image5" /> </div>
      <!--It is safe to delete this if captions are disabled-->
      <div id="slideshow-caption"></div></div>
    <div class="sidebar2" "anotherClass editable"><p align="center"><strong>Chamber News</strong><br />
    Local News item
    <br />
    Another New item</p>
      <p align="center">lots of news this week<br />
        <br />
        <br />
        <br />
      </p>
    </div>
    <div class="sidebar3" "anotherClass editable"><p align="center"><strong>Upcoming Events</strong></p>
      <div align="center">    <a href="activities.html" style="color: #FFFF0D">Community wide yard sales</a><br />
        <br />
        <br />
        <br />
        <br />
      </div>
    </div>
    <div class="content"><br />
    <br />
    </div>
    <div class="footer">
            <p align="center"><span style="font-size: small">Reardan Area Chamber of Commerce</span><br />
              <span style="font-size: x-small">[email protected]  - 509.796.2102</span><br />
            </p>
            <!-- end .footer -->
    </div></body>
    </html>

    If you DO want the slideshow overlaping the navigation try the below css:
    .sidebar1 {
        float: left;
        width: 225px;
        margin: 60px 0px 60px 60px;
        color: #FFFF0D;
        background: #595FFF;
        border-radius: 13px;
        -moz-border-radius: 13px;
        -webkit-border-radius: 13px;
        padding: 5px 5px 0px 5px;
        border: 3px solid #F7F723;
    .box {
    float: left;
    margin-left:-60px;
    width:700px;
    height:350px;
    border-radius: 13px;
    -moz-border-radius: 13px;
    -webkit-border-radius: 13px;

  • Thumbnail/preview images are not showing in Facebook (Safari/Firefox/Chrome)

    Hello
    I've never had this problem before in a year of having a new MBP. The MBP completely ran out of juice for days to the point of the clock resetting (whether this is an issue I don't know), although the MBP works totally fine and is now on full juice.
    However, I've noticed that when using Facebook (which is important for my work / digital marketing), I can't see any preview thumbnails/images, which is really annoying, as when posting official work stuff I can't see if they are being displayed properly.
    Screenshot of the problem- you will see a white question mark in a blue box where the image/preview thumb should be.
    I've reset safari/firefox/chrome completely and deleted ALL history/cache etc etc and udated to all latest versions. All the usual troubleshooting stuff, but it's still happening!??
    Can anyone help with this???
    Thanks!

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this exercise is to determine whether the problem is localized to your user account. Enable guest logins and log in as Guest. For instructions, launch the System Preferences application, select “Help” from the menu bar, and enter “Set up a guest account” (without the quotes) in the search box.
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    As Guest, launch the application(s) and test. Same problem(s)?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.

  • Firefox Chrome Showing ???? instead of International Characters

    Hi,
    I have a flash movie at this site
    http://preview.tinyurl.com/5289rz
    When you click on the rendered thumb nail (with a link
    containing international characters) it takes you to a URL with
    those same characters in IE 7 it displays international characters
    and takes you to a correct page but in Firefox, Chrome and Opera
    the international characters are displayed correctly in the flash
    movie, but the URL turns those characters into question marks ????
    and the pages shows a 404 not found error.
    Firefox
    http://www.site.com/video/??????_??????_???????_???????_???????_???_????????

    Does that mean we should ignore those millions of users
    around the world that would be plain foolish. I am here to get this
    problem solved not to be told to just ignore users who use other
    browsers.

  • Nav hover & visited links works in IE but not in Firefox, Chrome, etc.

    I created 2 side-by-side horizontal nav bars below the header tag with div tags and css.  The left nav bar uses different colors than the right one. The load, hover and visited colors all work fine in Internet Explorer.  When I test them in Firefox, Chrome, Opera and hand held devices, this is what happens:
    If I click on any of the links in the right nav bar, all the links in the right nav bar turn to the visited color.
    Or, if I click on any of the links in the left nav bar and all the links in both nav bars turn to the visited color.
    Thanks!

    Did you define a full set of link states for the #left and #right sidebars?  It could be that some other links styles are cascading down to your sidebars.  Another way to insure good cross browser results is to define link states in the following sequence: aLiVHAF = a, link, visited, hover, active, focus (optional for keyboard users)
    CSS:
    #left a {text-decoration:none}
    #left a:link {color: red}
    #left a:visited {color:gray}
    #left a:hover,
    #left a:active,
    #left a:focus {color: green}
    Repeat same rule order for #right sidebar
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • "Fast Web View" not supported in Acrobat X plug-in for FireFox/Chrome

    The Acrobat X plug-in for displaying PDFs in FireFox/Chrome does NOT support fast web view.   This means that PDFs don't display until after the entire file has been download.
    For example, try viewing this document in either IE(Windows) or Safari(Mac):
    http://partners.adobe.com/public/developer/en/pdf/PDFReference.pdf
    Notice how it opens very quickly, and then you can scroll around and view all the content as the PDF content strreams in?  In Safari you can see the download progress like you used to be able to see in all versions of the acrobat plug-in.  Note also that in the IE version, although fast web view is working, you cannot see the download progress like you used to be able to... Thats an issue, but not nearly as bad as the real issue...
    Now try clicking the same link in either FireFox or Chrome (note that in Chrome you need to be sure that Chrome's PDF viewer is turned off and the acrobat plug-in is enabled).  Note that the PDF is not displayed until the entire file is downloaded.
    This feature is VITAL for viewing large documents online.  I'm astonished that this has not been reported by other users.
    Adobe -- PLEASE be sure that this gets fixed in the next update to Reader X!!  I was shocked to see that it was not fixed in 10.1.

    WHY would you want to disable this? Linearized "Fast Web View" enabled PDF are the right and proper type of document to be created.

  • Some web pages are not loading on my Macbook pro, Safari,firefox,chrome,opera! Some web pages are loading pictures like thumbnails. Pls i need helpppppppppp!

    Some web pages are not loading on my Macbook pro, Safari,firefox,chrome,opera! Some web pages are loading pictures like thumbnails. Pls i need helpppppppppp!

    It would help us help you if you provided a link to a non working page.

  • How can I keep my bookmarks updated live in Firefox & Chrome on the same PC?

    I use both Firefox & Chrome on my notebook. I have a huge number of bookmarks set up & up until now I have to export/import my bookmarks between Firefox & Chrome on the same notebook on a regular basis to ensure that any updates or changes I make when using Chrome or Firefox are updated. This is very time consuming & means that either one or the other (FF or Chr.) are never truly synchronised or up to date.
    Is there an easy way to ensure that any changes I make when using FF or Chr. are updated on a "live" or real time basis?
    FYI - I do not wish to "sync" this data to any other hardware.

    You can use Xmarks to synchronize bookmarks between Firefox and Chrome on the same PC. <br />
    http://www.xmarks.com/about/features

  • Iframe won't scroll! It works fine in FireFox, Chrome, and IE

    I wrote a simple holder to display websites writen for phones on larger screens. In it I simply have an Iframe. This works great for FireFox, Chrome, and IE (although IE does not work well with HTML5). However on Safari instead of scrolling the Iframe expands. Below is my holder page.
    I've been testing with an IPad 3.
    Thanks for any advice.
    Joel
    <html>
    <head>
    <title>Phone Internet</title>
    <meta name="viewport" content="width=device-width, user-scalable=no">
    <style type="text/css">
    <!--
    div.Title{font-family: Arial, Helvetica,sans-serif;font-size: 18px;}
    div.Copy{font-family: Arial, Helvetica,sans-serif;font-size: 12px;}
    #CellWindow{width: 320px;height: 480px;overflow:scroll}
    -->
    </style>
    <script type="text/javascript">
    <!--
    if (navigator.userAgent.indexOf('MSIE') > -1){alert("This page is best viewed with Chrome, FireFox and Safari. Other browsers may not display
    // -->
    </script>
    </head>
    <body bgcolor="#808080">
    <div align="center" class="Title">Mobile Phone HTML Examples</div>
    <div align="center">
    <iframe id="CellWindow" height="480" width="320" scrolling="yes" noresize="noresize" src=""></iframe>
    </div>
    <div align="center" class="Copy">&copy;Joel Moses 2012</div>
    <script type="text/javascript">
    <!--
                        document.getElementById("CellWindow").src = "http://www.zendisoft.com/mobile/index.htm";
                        document.getElementById("CellWindow").style.height="480px";
    // -->
    </script>
    </body>
    </html>
    Thanks for the help.

    User csdco (https://github.com/fancyapps/fancyBox/issues/2#issuecomment-5997068) has provided a simple answer that solved the issue for me.
    It's much easier to control overflowed divs than it is iframes, and the scrolling + blank content issues are working all the way back to iOS 4, where previously I wasn't even able to get the 2 finger scrolling to work (in iframes).
    It goes something like this:
    <iframe id="stupid-iframe" width="600" height="200" src="a-file.html"></iframe>
    a-file.html:
    <html>
    <body>
    <div id="wrapper" style="width: 100%; height: 100%; overflow: auto; -webkit-overflow-scrolling: touch;">
    </div>
    </body>
    </html>

  • OK it's now fast............but for me that's all at present. I tried all browsers, ended with firefox & chrome, preferred firefox but it is updated badly too m

    OK it's now fast............but for me that's all at present.
    I tried all browsers, ended with firefox & chrome, preferred firefox but it is updated badly too many times causing me to have to re-install on many occasions, very time consuming.
    The last update also hanged my PC resolution viewing type, it became even more blurred on every program on my PC.
    The previous version was acceptable. I now intend to use chrome more often & maybe uninstall firefox for good.
    ?security updates, are these likely to affect my PC performance in any way?
    Here is a complete list of my recent (January 2012) home built PC costing 720 euros.
    Case Cooler Master Elite 360 - Mini tower - ATX CPU CPU
    CPU - Intel Core i7 2600K / 3.4 GHz - LGA1155 Socket - L3 8 MB
    Motherboard - Asrock Z68 PRO3-M Micro-ATX Motherboard
    Memory Corsair - CMX8GX3M2A1333C9 - Memory - DDR3 1333 - 8 GB
    Graphics Card None ................ i7 3000, I tried a GT520 Slower than the integrated Intel, sent back!
    Hard Drive - Western Digital Caviar Black - Internal Hard Drive 3.5 "- 1 TB SATA III
    INet - Wireless TP-Link - TL-WN851N - Wireless N PCI Card - 300Mbps - MiMo - 2 antennas
    Power Supply Be Quiet - BQT L7-530W - PC Power Supply - ATX - 530 W. Not so QUIET not good, buy another. DVD R / Writer - Liteon iHAS324
    DVD Player recorder - Liteon IHAS 124 internal
    Internal multi card reader - LECT-MUL-CAR -C109 Multi-card Reader Internal 3.5 "
    Logitech wireless keyboard & mouse, not a good choice, it's USA layout has no POUND symbol, also sometimes misses other symbols when typing, avoid Logitech!
    Finally I used 2 dust filters - DEMCiflex dust filter 80mm & 120mm also Silverstone SF01 internal system noise reducer foam, to try to get rid of noise from Power supply, best to install this before all else otherwise almost impossible. Actually I have not found the Silverstone foam to decrease the noise!

    Although not supported anymore, iWeb does still function using Mountain Lion...
    http://www.iwebformusicians.com/iWeb/mountain-lion.html
    ... and you can purchase it from Amazon.
    Start with a blank page using the Black or WHite template.
    All modern websites use CSS and there are thousands of free templates to be had if you want to use a code entry style application. You will need to go this route if you want to create a site that is viewable on mobile devices although you can create an iPhone version using iWeb...
    http://www.iwebformusicians.com/iWeb/Mobile-iWeb.html
    Search this forum for numerous topics about iWeb alternatives.

  • HTTPResponse not correct in swf running on Firefox,Chrome

    Hi I am using urlLoader.Load(urlRequest). I am listening to the HTTP response to take further action.It works fine on standalone player and IE and I get HTTP response as 200. However for Firefox,Chrome it returns HTTPResponse as 0.Can anyone please help me on this? I have the recent flash player plugin installed and the swf file is of version 9.

    I just published the swf in swf Version 10. It seems to work fine in this case. However I still require version 9 swfs. I tried Swf version 9 with flash player 9 in Firefox and there too I was getting the same problem.Is it a problem with swf versions or flash player versions?

  • Lauching firefox with -chrome option in Mac machine make it to hang. We are calling ./firefox - chrome chrome:// URL

    We have written a firefox extension to launch a web site from the applicaiton. We are launching the firefox using the command
    ./firefox -chrome chrome://iolaunch/content/temp.xul.
    till 3.6 it used to work fine. but in 4.0 the above command make the firefox to hang.
    the content of the xul file look like below.
    <?xml version="1.0"?>
    <overlay id="iolaunch-overlay"
    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
    <script>
    var Cc = Components.classes;
    var Ci = Components.interfaces;
    cookie_manager = Cc["@mozilla.org/cookieService;1"].createInstance(Ci.nsICookieService);
    uri = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService).newURI('#URL#', 'ISO-8859-1', null);
    cookie_manager.setCookieString(uri, null, 'X-Login'+ '='+ '#Info1#' , null);
    cookie_manager.setCookieString(uri, null, 'X-Token'+ '='+ '#Info2#' , null);
    cookie_manager.setCookieString(uri, null, 'X-Go'+ '='+ '#Info3#' , null);
    </script>
    </overlay>
    can you tell me why this does not work. Infact none of the chrome URL is getting loaded in firefox 4.0.

    You need to use file:// as the protocol instead of C:/. The latter may never work (C:\ might).
    Where is the main HTML located ?
    Easiest if to store the images in a sub folder of the location because you can't go back via ../ beyond that root location for security reasons.
    See:
    *http://kb.mozillazine.org/Links_to_local_pages_do_not_work

  • When I open Firefox I receive the following message on the open tab: jar:file:///C:/Program Files/Mozilla Firefox/chrome/en-US.jar!/locale/branding/browserconfig.properties.

    I have been slowly loading more plugins and extensions for Firefox, as I found that I had a conflict and Firefox would freeze. Two (2) days ago I used Firefox Sync for the first time. After I rebooted my computer, I found that when I opened Firefox I receive this message "jar:file:///C:/Program Files/Mozilla Firefox/chrome/en-US.jar!/locale/branding/browserconfig.properties."
    I use Speed Dial as my home page and at the same time I received this message, Speed Dial stopped working, unless I click on the "open a new tab" button.
    I opened the container for the file listed above, and I show that the file is in the folder.
    I tried reinstalling Firefox in case there was a corrupt setting, however it hasn't helped

    Caused by the Firefox Sync extension. Reset your Homepage to Default.
    http://support.mozilla.com/en-US/kb/How+to+set+the+home+page

  • [SOLVED] Firefox, Chrome, GIMP, veeeeeeeery slow!

    Hi guys!
    Since two days I cannot use Firefox, Chrome, GIMP and other applications because every time I click in any menu option, it takes ages until the program reacts. With Konqueror it does not happen.
    Can you help me here, please? I just update regularly Archlinux and I didn't uninstall anything (as far as I know)
    I'm using KDE as desktop.
    Thanks for giving me ideas. My current Archlinux installation is 4 years old and I haven't got big problems until now. The only solution I can think of is to reinstall everything, but this would be a huge work for me!
    Regards!
    Last edited by pepito_20110623 (2012-05-17 07:28:09)

    pepito_20110623 wrote:
    zoop wrote:
    I had this issue and for me the cause was pulseaudio.
    An upgrade of the pulseaudio package changed some things in /etc/pulse/default.pa but the changes got written to .pacnew since I had changed some things there myself. Because of this, pulseaudio wouldn't start anymore.
    When I applied the changes to /etc/pulse/default.pa and started pulseaudio, everything went back to normal for me.
    Can you please tell me exactly what you did? Did you overwrite /etc/pulse/default.pa with the .pacnew file?
    I just overwrote the default.pa with default.pa.pacnew, started pulseaudio with pulseaudio --start and now all the menus are working again!!!!
    Thanks zoop!!!!
    Thanks to you all!!!

Maybe you are looking for

  • How to send email distribution to all users from report ?

    Hi all, I got the following report output :- Item_______Qty_On_hand_________Min_qty____Email [email protected] [email protected] [email protected] Once the reporis being generated, it will distirbute to all the email id list. Will this possible ? or

  • Tax Code in MIRO

    Hi We hv tax code in PO for an item. We do MIGO. When we try to do MIRO, after giving the PO no in MIRO, the PO line item is coming with the tax code in PO. But in header data, basic data tab we hv a tx code filed and its not picking the tax code in

  • Freezing Nokia Software Updater

    i have got a problem with the nokia software updater. anytime i launch it to update my n70 to the latest software it just freezes. i havent been able to load the latest firmware on my n70. any help will be greatly apprieciated.

  • New WD external hard drive.

    is there anything I should do/know before using the WD external hard drive. I am really new at this. I don't know if I should format the drive, or not. Since this mac is an old PowerPC rather than an Intel, will that create any problems when I buy a

  • Defaulting Null Values in an outer join to the last joined row's values.

    I have a situation where I need to fill in the missing values from an outer join with the last values returned by the join. The query is based on a date table, an organization table and a transaction table. SELECT D.DATE_ID, O.ORG_ID, T.VALUE FROM D_