SWF not displaying properly in FireFox and IE 7 & 8

I am working on a site that is staging right now.  I have a gallery page that displays a Flash .swf file. It loads properly in all browsers, except only about 1/3 of the viewer shows up on the page in FireFox and IE 7 & 8. It displays perfect in Safari and older versions of IE.  Is anyone familar with this issue? Can someone offer any suggestions?  Thanks in advace.

What version of Flash? What does the html page that holds the .swf look like? Can you share a URL where this file sits?

Similar Messages

  • Animation not displaying properly in Firefox

    My animation not displaying properly in Firefox. I have searched this forum and others but am only able to find outdated solutions (such as updating to the latest release of Animate). I am on the most current versions of Animate and Firefox and still having problems. Does anyone know of a solution to this, or can direct me to a discussion that already covers it?
    An interesting thing to note is that only the center tree is acting differently, though the commands for each seem to be the same. Also the small mountains are fine, but not Mt Rainier.
    Here is my test page:
    http://jonnyart.com/test/NewYearsAnimation
    Thanks!

    In case anyone else runs into this issue, I was able to resolve it by rebuilding those portions of the animation.

  • TDF not displaying properly in Firefox 4

    Hi, just an FYI to the TDF team...the web version is not displaying properly in Firefox 4.0.1. The main browser window (for lack of a better description) is slightly off-set maybe 10 - 15 pixels down and to the right. Because of this it covers up some of the TDF navigation tabs.

    In case anyone else runs into this issue, I was able to resolve it by rebuilding those portions of the animation.

  • Wordpress theme not displaying properly in Firefox, but shows well in Safari and Chrome

    Hi!
    I have a Wordpress site that i'm using a custom theme with. Starting yesterday, my website's layout is shifted around and very distorted when viewing in Firefox, but it's perfectly fine in Chrome and Safari.
    I tried deactivating the plugins, didn't help. I checked the site in multiple computers, same issue on all of them.
    When checking on Windows PC, only Chrome displays the site properly, both firefox and IE are giving the "Exploit Black Hole" warning. I checked the site with URLVoid and VirusTotal, it came up clean.
    Here's the link: http://selektorstyle.com
    At this moment, i have no idea what to do, so any help is much appreciated!
    Thank you.

    Seems to be working fine here on Linux.
    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    Use a compressed image type like PNG or JPG to save the screenshot and make sure that you do not exceed the maximum file size (1 MB).
    If you have increased the minimum font size then try the default setting "none" as a high value can cause issues.
    *Tools > Options > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    *Tools > Options > Content : Fonts & Colors > Advanced > [X] "Allow pages to choose their own fonts, instead of my selections above"
    If you are not on Windows then instead of "Tools > Options" use:
    *Linux: "Edit > Preferences"
    *Mac: "Firefox > Preferences"
    *Windows: "Firefox > Options" or "Tools > Options"
    <i>Press F10 if the menu bar is hidden on Windows and Linux</i>
    Do a malware check with some malware scanning programs on the Windows computer(s).<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    *http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Flash site not displaying properly in IE and chrome

    Any ideas of what is causing this code not to display properly in IE and chrome as checked on PC.
    It works on safari
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
              <head>
                        <title>n u h n | painting</title>
                        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
                        <script type="text/javascript" src="swfobject.js"></script>
                        <script type="text/javascript">
                                  swfobject.registerObject("myFlashContent", "8.0.0");
                        </script>
              <style type="text/css">
    <!--
    body {
              background-color: #FFFFFF;
              margin-left: 0px;
              margin-top: 0px;
              margin-right: 0px;
              margin-bottom: 0px;
    -->
    </style>
    <body>
                        <div align="center">
                                  <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%" id="myFlashContent" align="middle">
                                            <param name="movie" value="index.swf" />
                                            <param name="quality" value="best" />
                                            <param name="scale" value="noscale" />
                                            <param name="bgcolor" value="ffffff" />
                                            <!--[if !IE]>-->
                                            <object type="application/x-shockwave-flash" data="index.swf" width="100%" height="100%" align="middle">
                                                      <param name="quality" value="best" />
                                                      <param name="scale" value="noscale" />
                                                      <param name="bgcolor" value="ffffff" />
                                            <!--<![endif]-->
                                                      <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" height="600" />
                                                      </a>
                                            <!--[if !IE]>-->
                                            </object>
                                            <!--<![endif]-->
                          </object>
                        </div>
              </body>
    </html>

    You can set an explicit width and height instead of a percent but I presume you want the flash object to be the size of the browser window specifying 100%. You also have noscale specified so I presume you're detecting the flash stage size and are dynamically laying out your content based on available space. Is that correct?
    That said, you're using XHTML strict but you have some invalid code. In browsers like IE that can be enough to pop compatibility mode and it gets messy. For instance the "align" attribute is not supported so you should remove it.
    Using 100% of the space is tricky. You have a scrollbar that can be invoked if you use 100%. Try 99% so the browser doesn't fire off a scrollbar just incase.
    Your CSS probably isn't doing enough either. Use your web developer tools in your browser to take a look at your object. You're only clearing margins on the body tag. Try something more aggressive to remove ALL margins and padding like so:
    *,html,body,object,div { margins:0; padding:0; }
    Your object probably has some margins or padding pushing it off screen and you're only setting margins for the body tag itself. Also a small CSS note. Anytime you specify a value of 0 you don't need to specify px, like 0px. No matter your unit, em, px, etc, 0 is 0. That's why I didn't put 0px if you were wondering.
    Also I specified 'div' in the CSS above. It may solve some of your problems to put your <object> inside a <div>.
    e.g.:
    <div style="width:99%; height:99%;">
        <object ............>
        </object>
    </div>
    Keep the <object> at 100% width and height if you place it inside that <div>. The browser is very good at dealing with <div>s and should have no problem keeping your content inside it resizing properly.

  • Upgrade to ver 1.6 pages not displayed properly in Firefox

    Hi,
    I upgraded HTML DB to Ver. 1.6 today. The installation was okay, did not raise any errors, but when I use Firefox to log on to HTML DB, the pages are not displayed properly. IE is able to resolve the pages correctly.
    Do I need to get a plug-in for Firefox? Ver. 1.5 was working perfectly with Firefox.
    TIA

    My design view won't display properly in Mozilla or IE. The images show. The CSS (core and flow) are found according to the access logs. But it doesn't display nicely at all. This was an upgrade from 1.5 to 1.6. 1.5 looked fine. My old applications from 1.5 display properly.

  • Hi my web hosting company irunsolutions.co.uk have informed me that my website does not display properly in firefox when run on a windows 7 32 bit platform.

    website is www.empireembroidery.co.uk
    does not display properly when viewed on 32bit windows 7 platform in firefox.

    You can try these steps in case of issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • CSS not displaying properly in Firefox

    My new CSS layout looks beautiful in IE7 (weird), however, it
    is not rendering properly in Firefox. I always do research before
    posting here, but I'm completely helpless now. I'm very new to CSS,
    this is my first page I've layed on using this language. Pretty
    much none of the top margins are working, and my faux column image
    isn't displaying. I'll attach the HTML and the CSS and see if
    someone can point out what is wrong with Firefox.

    I'm seeing problems in FF3, Safari 3.1, and IE6. Flash code
    and missing alt
    tags on images won't hurt you, but some of the other
    validation errors could
    be effecting your layout.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.colonybeachresort.com%2FCSS_T esting%2F
    In addition, you've got problems with those png images and
    alpha-transparency. They do not render well in IE6 without
    some sort of png
    fix JavaScript. Given that many people still use IE6, you
    might want to
    switch to jpgs for backgrounds.
    IE net renderer for checking web sites
    http://ipinfo.info/netrenderer/
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "nowherecreative" <[email protected]> wrote
    in message
    news:g6ak8o$2iv$[email protected]..
    > Here is the link to the site.
    >
    http://www.colonybeachresort.com/CSS_Testing/
    > If you view it in IE7 it looks great. When you view it
    in Firefox the top
    > margins aren't working ... for example, the whole site
    is supposed to
    start
    > right from the top (no space between the top of the
    browser window and the
    > content, as seen in IE7). Also, the background of my
    columns are not
    showing
    > up, you can really see the difference when you compare
    them between the 2
    > browsers.
    >

  • OLE Objects are not displayed properly-overlap characters and empty page

    I'm using CR4E 12 Runtime libraries to load and view reports that are created in CR designer  v10. Some of the OLE Objects (not all) are not displayed properly.
    1) A full page contains terms and conditions as ole object is not at all displayed and just shown as black image.
    2) Some data in a table (OLE Object) shown as overlapped characters.
    Any body know the reason and is there any workaround to solve this issue?
    Thankyou very much for your time.

    Your problem seems to be with the character encoding you are using for your text.  A quick google search for ColdFusion character encoding should turn up the answer.  In case you are interested in learning more:
    http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?cont ext=ColdFusion_Documentation&file=00001201.htm
    Hope that helps!
    - Michael

  • Why Is Dreamweaver CS4 Tooltips Not Displaying Properly in Firefox?

    Hello,
    I used tooltips to provide answers to questions on my "Frequently Asked Questions" page (there are 19 questions).
    In IE, the pop up displays in the default setting as each question is moused over.
    However, in Firefox, the pop up window stays at the top of the screen.  So by time you mouse over question 5, the top half of the pop up is at the top of the page and cannot been seen.  As you go further down the page, the pop up cannot be seen at all because it stays at the top of the page.
    I would really appreciate any advice on how to make the tooltips display properly in Firefox.   Thanks,  Theresa

    function(){return A.apply(null,[this].concat($A(arguments)))}
                       Do I need to publish the site before these kind of problems can be resolved?
    It's usually the quickest way to get an accurate answer.
    You're describing page behaviour which doesn't have an obvious cause since it depends on your code syntax and structure. If we can see what's going on, we can probably isolate the issue.
    Showing is always better than telling.

  • Lion text problem: Some text does not display properly in Safari and Firefox

    Hello
    Some text in Safari and Firefox is seriously degraded, making it useless. I changed to Firefox because Safari was displaying wrongly, but Firefox displays the same way, so it seems to be an OS problem. See image as an example:
    I cannot see subtitles on BBC streamed movies, and the timing of the movies on the bottom ribbon do not display correctly.
    I am using Lion 10.7.5
    Is there a solution for this problem?
    Thanks for any help.

    Unbelievable (and I still cannot believe that) - is wmode="transparent/opaque/etc" - not supported by safari ? then how do you suggest we go about transparent flash elements on web pages? why isn't it working on safari while on every other browser on earth it does?

  • Facebook Apps do not display properly in Firefox

    Certain Facebook apps don't properly display in Firefox.
    Some forms or articles (content) are cut off and don't diplay all fields or buttons or text,
    not allowing completion and submission of forms or reading all of text.
    Mac OS X 10.6.8
    Firefox 8.0
    These same Facebook pages display properly in Safari 5.1.1

    That content is in a not scrollable iframe.<br />
    The height of that frame is probably set via JavaScript to the correct height after that iframe has loaded and that didn't seem to have happened in your case and you only get the default height of about 600px.<br />
    You can try to right click in that frame: This Frame > Open Frame in New Tab
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Firefox > Preferences > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Please help: my website does not display properly in firefox

    (note) everything works fine clientside
    I'm totally new here but I really really need help debugging
    my website. The problem is I have a flash file the loads an xml
    file to display pictures. Basicallly a gallery. It works in IE but
    not Firefox and I can't understand why.
    here is the offending pages
    3dart Page |
    Print Page
    as you can see they display fine in IE. try in mozilla
    firefox and the server just hangs. here is the actionscript from
    the .fla:
    function loadXML(loaded) {
    if (loaded) {
    xmlNode = this.firstChild;
    image = [];
    description = [];
    total = xmlNode.childNodes.length;
    for (i=0; i<total; i++) {
    image
    = xmlNode.childNodes.childNodes[0].firstChild.nodeValue;
    description
    = xmlNode.childNodes.childNodes[1].firstChild.nodeValue;
    firstImage();
    } else {
    content = "file not loaded!";
    xmlData = new XML();
    xmlData.ignoreWhite = true;
    xmlData.onLoad = loadXML;
    xmlData.load("freelance.xml");
    listen = new Object();
    listen.onKeyDown = function() {
    if (Key.getCode() == Key.LEFT) {
    prevImage();
    } else if (Key.getCode() == Key.RIGHT) {
    nextImage();
    Key.addListener(listen);
    previous_btn.onRelease = function() {
    prevImage();
    next_btn.onRelease = function() {
    nextImage();
    p = 0;
    this.onEnterFrame = function() {
    filesize = picture.getBytesTotal();
    loaded = picture.getBytesLoaded();
    preloader._visible = true;
    if (loaded != filesize) {
    preloader.preload_bar._xscale = 100*loaded/filesize;
    } else {
    preloader._visible = false;
    if (picture._alpha<100) {
    picture._alpha += 10;
    function nextImage() {
    if (p<(total-1)) {
    p++;
    if (loaded == filesize) {
    picture._alpha = 0;
    picture.loadMovie(image[p], 1);
    desc_txt.text = description[p];
    picture_num();
    function prevImage() {
    if (p>0) {
    p--;
    picture._alpha = 0;
    picture.loadMovie(image[p], 1);
    desc_txt.text = description[p];
    picture_num();
    function firstImage() {
    if (loaded == filesize) {
    picture._alpha = 0;
    picture.loadMovie(image[0], 1);
    desc_txt.text = description[0];
    picture_num();
    function picture_num() {
    current_pos = p+1;
    pos_txt.text = current_pos+" / "+total;
    stop();
    if anyone would help me debug this I would really appreciate
    this, I'm not good with code. I'll give you the source files to
    look at if need be, i'm desperate! thanks

    Can you attach some [http://en.wikipedia.org/wiki/Screenshot screenshots] for comparison to show what you mean?
    Use a compressed image type like PNG or JPG to save the screenshot and make sure that you do not exceed the maximum file size (1 MB).

  • Subtitles & other text not displaying properly safari & firefox

    Hello
    some text in Safari and Firefox is seriously degraded. I changed to Firefox because Safari was displaying wrongly, but Firefox has the same problem. See image:
    I cannot use subtitles on BBC streamed movies either, and the timing of the movies on the bottom ribbon do not display either
    I am using Lion 10.7.5
    Is there a solution for this problem?

    The tags at the bottom of my original message are out of date:
    Should be
    Mac OS Lion 10.7.5
    Safari 6.0 (7536.25)
    Firefox 16.0.2

  • Mail merge fields not displaying properly - Dollar signs and percentages

    Hi folks,
    I don't know much about mail merging, so I have a question.  I have most things working on my merge, but need help with a couple of minor items (I hope).  I have an Excel 2010 spreadsheet that we use for merging to a Word 2010 document. 
    It has various fields such as name, address, city, etc.  It also has a field for a dollar amount formatted to two decimal places and showing the $ sign in Excel (ex. $67,000.00), but when it gets merged into the Word document, it displays as 67000. 
    It doesn't pull the $ nor the decimal point and cents.
    I also have the same thing with a percentage (Ex. 6.00%), displays in the Word document as .006. 
    I think I have everything else working, but can't figure out how to format these items in the Word document to display properly.  Any advice?
    Mike

    If you insert the fields
    { MERGEFIELD Total_NB_Premium_away_from_Plan }
    and
    { MERGEFIELD Total_Premium_of_Team_Sales_Target }
    directly in your mail merge main document, outside an IF field, not nested in an { = } field, with no formatting switches, what results do you see?
    Word will only apply a numeric format to things that it decides are numeric (broadly speaking, that includes numeric and currency amounts that it can recognise). It will leave anything else unformatted. So if you have something that looks a bit like a number
    like "$-164,209.00", the chances are that Word will leave it exactly as it is.
    When Word does not recognise something as being a number or a valid numeric expression, it will generally display one error or another when you try to put it in an { = } field. So, e.g. 
    { =$-164,209.00 } would give you the syntax error that you are seeing. (Assuming "$" is set up as the currency symbol in your COntrol Panel's regional options. If the regional currency symbol was £, you would see a different syntax error.)
    The problem in this case probably originates in something that has happened in Excel. Normally, things that are numeric/currency in Excel come through as things that Word treats as numeric. But if for example, someone has entered a number formatted as text
    in a column that has texts rather than numbers above it, Word may receive something that it does not think is numeric. You may have to fix your sheet before Word will "see" the numbers correctly.
    When you have got to the point where WOrd sees the numbers correctly, you should be able to use
    { MERGEFIELD
    Total_NB_Premium_away_from_Plan} \#$,0.00 }
    (and the negative numbering formats if you want) without nesting the { MERGEFIELD } inside an { = }
    Peter Jamieson

Maybe you are looking for

  • Centre not working in Dreamweaver Design View (CSS+HTML)- Preview OK- help!

    Hi there I am having a slight problem with DW which I have had before, and fixed, but I cant for the life of me remember how I fixed it.  So any help is much appreciated. I am producing a proof site for a client and cannot load it to be live just yet

  • IPhoto does not show connected devices.

    We have 2 iMac 27", 3 MacBookPro 17" 2X15", 3MacBookAir in our home. All have ML. In all of them iPhoto shows devices when an iPhone is connected except in one of the iMacs. I looked everywhere for a solution like this one: http://www.jasoncoleman.ne

  • No Sound from Adobe Read-Aloud

    I have a PC running Windows 7. I have Adobe XI and Adobe Acrobat Pro intalled. I can turn on "Read-Aloud" in either but when "Read-Aloud" is turned on and I choose to read the page, the document or just a paragraph, no sound is produced. The sound ca

  • SC 1-step approval with Deadline

    Hi Folks, Is there any standard workflow for SC 1-step approval with deadline escalation? I found 10400047 Two Step Approval with Deadline but can not find a 1-step. I tried to extend the standard 1-step to include deadline without succes. Is there a

  • Cl_gui_alv_tree and RH_STRUCT_GET and result_struc

    Hi everyone The FM RH_STRUCT_GET returns a table , result_struc, with an estructure . How can we use this table for create an alv grid tree control ? Thx