Ie9 flash object not showing when wmode is set

I'm searching and searching but do not find any solution for this.
We're having a flex web application that is working fine until now. We're using until recently the google maps flash api, unfortunately this is already deprecated and will disappear completely in september 2014. Therefor we moved the whole integration to the js v3 api, which is working fine. The whole thing is an overlay over the application, since everything is moved to js, I added the property wmode to the object in html and set it to opaque in order to be able to layer everything. It's working fine for most people, but some (including my boss) are seeing a blank screen. Seems that nothing happens (although the swf loads), and I can not figure out why. Same browser (ie 9 or 10), same flash player version (11.6.xxx). Browser cache cleared, flash player cache cleared...
Somebody having a clue? Removing the wmode-property solves the issue, but then I'm not be able to get my map on top of the application.
The swf is definetly loading since I see calls made to the server in order to login etc. It's also not a flash player issue. The swf-file is directly accessable and rendering if done so.
Thanks
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- saved from url=(0014)about:internet -->
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<!--
Smart developers always View Source.
This application was built using Adobe Flex, an open source framework
for building rich Internet applications that get delivered via the
Flash Player or to desktops via Adobe AIR.
Learn more about Flex at http://flex.org
// -->
<head>
    <title>${title}</title>
    <meta name="google" value="notranslate" />  
    <meta http-equiv="X-UA-Compatible" content="IE=10; IE=9;"/>     
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- Include CSS to eliminate any default margins/padding and set the height of the html element and
         the body element to 100%, because Firefox, or any Gecko based browser, interprets percentage as
         the percentage of the height of its parent container, which has to be set explicitly.  Fix for
         Firefox 3.6 focus border issues.  Initially, don't display flashContent div so it won't show
         if JavaScript disabled.
    -->
    <style type="text/css" media="screen">
        html, body  { height:100%; }
        body { margin:0; padding:0; overflow:hidden; text-align:center;
               background-color: ${bgcolor}; }  
        object:focus { outline:none; }
        #flashContent { display:none;}
    </style>
    <!-- Enable Browser History by replacing useBrowserHistory tokens with two hyphens -->
    <!-- BEGIN Browser History required section ${useBrowserHistory}>
    <link rel="stylesheet" type="text/css" href="history/history.css" />
    <script type="text/javascript" src="history/history.js"></script>
    <!${useBrowserHistory} END Browser History required section --> 
    <!--  BEGIN OogScreening -->
    <script src="PlusOptixSync.js" language="javascript"></script>
    <!--  END OogScreening -->
     <script language="javascript">
        function getEIDxml()
          var strXML = document.MirageApplet.readCardAsXMLString() + " ";
          return strXML;
        function setOuterSize()
            var nomWidth = 1280;
            var nomHeight = 800; // 786 viewable in fullscreen
            var actWidth = nomWidth;
            var actHeight = nomHeight + 150 - 30; // fullscreen change coeff (ruimte die we winnen door f11) - taakbalk
            window.resizeTo(actWidth, actHeight);
            //window.outerWidth = actWidth;
            //window.outerHeight = actHeight;
            //script die de F1 help functionaliteit van de browser afzet. Dit is nodig omdat IE de F1 functionaliteit van de flex applicatie onderdrukt
            document.onhelp=new Function("return false");
            window.onhelp=new Function("return false");
    </script>  
    <script type="text/javascript" src="swfobject.js"></script>
    <script type="text/javascript">
        // For version detection, set to min. required Flash Player version, or 0 (or 0.0.0), for no version detection.
        var swfVersionStr = "${version_major}.${version_minor}.${version_revision}";
        // To use express install, set to playerProductInstall.swf, otherwise the empty string.
        var xiSwfUrlStr = "${expressInstallSwf}";
        var flashvars = {};
        var params = {};
        params.quality = "high";
        params.bgcolor = "${bgcolor}";
        params.allowscriptaccess = "sameDomain";
        params.allowfullscreen = "true";
        params.wmode = "transparent";
        var attributes = {};
        attributes.id = "${application}";
        attributes.name = "${application}";
        attributes.align = "middle";
        swfobject.embedSWF(
            "${swf}.swf", "flashContent",
            "${width}", "${height}",
            swfVersionStr, xiSwfUrlStr,
            flashvars, params, attributes);
        // JavaScript enabled so display the flashContent div in case it is not replaced with a swf object.
        swfobject.createCSS("#flashContent", "display:block;text-align:left;");
    </script>
      <!-- Groeicurven 5.0 scripts -->
      <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
      <script src="http://code.highcharts.com/highcharts.js"></script>
      <script src="http://code.highcharts.com/modules/exporting.js"></script>
      <script type="text/javascript" src="../js/util/Namespace.js"></script> 
      <script type="text/javascript" src="../js/util/mirage-services.js"></script>
      <script type="text/javascript" src="../js/util/mirage-binding-utils.js"></script>
      <script type="text/javascript" src="../js/util/mirage-event-dispatcher.js"></script>
      <script type="text/javascript" src="../js/util/groeicurven-highcharts-constants.js"></script>
      <script type="text/javascript" src="../js/util/groeicurven-highcharts-theme.js"></script> 
      <script type="text/javascript" src="../js/util/groeicurven-highcharts-config.js"></script>
      <script type="text/javascript" src="../js/util/groeicurven-highcharts-factory.js"></script> 
      <script type="text/javascript" src="../js/util/groeicurven-highcharts-zoomer.js"></script>
      <script type="text/javascript" src="../js/util/groeicurven-highcharts-formatter.js"></script>      
      <script type="text/javascript" src="../js/util/groeicurven-highcharts-prototype.js"></script>
      <script type="text/javascript" src="../js/groeicurven-events.js"></script>             
      <script type="text/javascript" src="../js/groeicurven-controller.js"></script>
      <script type="text/javascript" src="../js/groeicurven-flex-bridge.js"></script>
      <script language="javascript">
            initGroeicurvenFlexBridge("${application}");
      </script>           
    <!--  BEGIN GoogleMaps -->
    <link rel="stylesheet" href="../css/google-maps.css">
    <script src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
    <script type="text/javascript" src="http://google-maps-utility-library-v3.googlecode.com/svn/trunk/styledmarker/src/StyledMarker.js"></script>
    <script type="text/javascript" src="../js/util/cvi_busy_lib.js"></script>
    <script type="text/javascript" src="../js/google-maps-events.js"></script>
    <script type="text/javascript" src="../js/google-maps-controller.js"></script>
    <script type="text/javascript" src="../js/google-maps-mediator.js"></script>
    <script language="javascript">
        function openMaps(data)
            document.getElementById('mapsContent').style.visibility ="visible";
            document.getElementById('optionsList').style.visibility ="visible";
            document.getElementById('activeCheckboxDiv').style.visibility ="visible";
            document.getElementById('mapsContent').style.zIndex = 100;
            onLoadHandler(data);
        function adresFoundHandler(marker, filtereEnabled){
            document.getElementById('mapsContent').style.visibility ="hidden";
            document.getElementById('optionsList').style.visibility ="hidden";
            document.getElementById('activeCheckboxDiv').style.visibility ="hidden";
            document.getElementById('activeCheckbox').style.visibility ="hidden";
            document.getElementById('mapsContent').style.zIndex = 0;
            clearLocations();
            ${application}.responseGoogleMaps(marker, filtereEnabled);
    </script>         
    <!--  END GoogleMaps -->   
</head>
<body scroll="no" onLoad="setOuterSize();">
    <!-- SWFObject's dynamic embed method replaces this alternative HTML content with Flash content when enough
         JavaScript and Flash plug-in support is available. The div is initially hidden so that it doesn't show
         when JavaScript is disabled.
    -->
    <div id="flashContent">
        <p>
            To view this page ensure that Adobe Flash Player version
            ${version_major}.${version_minor}.${version_revision} or greater is installed.
        </p>
        <script type="text/javascript">
            document.write("<a href='http://www.adobe.com/go/getflashplayer'><img src='get_flash_player.gif' alt='Get Adobe Flash player' /></a>" );
        </script>
    </div>
    <noscript>
        <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="${width}" height="${height}" id="${application}">
            <param name="movie" value="${swf}.swf" />
            <param name="quality" value="high" />
            <param name="bgcolor" value="${bgcolor}" />
            <param name="allowScriptAccess" value="sameDomain" />
            <param name="allowFullScreen" value="true" />
            <param name="wmode" value="transparent" />
            <!--[if !IE]>-->
            <object type="application/x-shockwave-flash" data="${swf}.swf" width="${width}" height="${height}">
                <param name="quality" value="high" />
                <param name="bgcolor" value="${bgcolor}" />
                <param name="allowScriptAccess" value="sameDomain" />
                <param name="allowFullScreen" value="true" />
            <!--<![endif]-->
            <!--[if gte IE 6]>-->
                <p>
                    Either scripts and active content are not permitted to run or Adobe Flash Player version
                    ${version_major}.${version_minor}.${version_revision} or greater is not installed.
                </p>
            <!--<![endif]-->
                <a href="http://www.adobe.com/go/getflashplayer">
                    <img src="get_flash_player.gif" alt="Get Adobe Flash Player" />
                </a>
            <!--[if !IE]>-->
            </object>
            <!--<![endif]-->
        </object>
    </noscript> 
    <noscript>Your browser does not support JavaScript!</noscript>
    <applet
      id ="MirageApplet"
      codebase = "AppletLibs"
      archive  = "kg-eid-tools-2.6.jar,beidlib-1.1.jar,jdom-1.0.jar,joda-time-1.6.jar,commons-lang-2.4.jar"
      code     = "be.kg.mirage.MirageApplet.class"
      name     = "MirageApplet"
      hspace   = "0"
      vspace   = "0"
      style="width: 0px; height: 0px;">
        <param name="Reader" value="">
        <param name="OCSP" value="0">
        <param name="CRL" value="0">
        <param name="DisableWarning" value="true">
    </applet>
    <div id ="mapsContent">
        <h3 id="typeLabel">Google Maps</h3>
        <select id="optionsList"></select>
        <input id="searchInput" type="text"></input>
        <div id="activeCheckboxDiv">
            <input id="activeCheckbox" type="checkbox"></input>
            <label for="activeCheckbox">Toon enkel actieve locaties</label>
        </div>
        <button id="searchButton" type="button" class="secondElementButton">Zoeken</button>
        <button id="annuleerButton" type="button" class="annuleerButton">Annuleer</button>
        <ul id="locations" class="thirdElement"></ul>
        <div id="canvasMap"></div>
    </div>

This means that the SWF is written so that it only works when
embedded in a web page. When you add the SWF to the stage as a
stand-alone display object using addChild() it is not being hosted
in the web page.
You have 2 options:
1. Modify the SWF code (if possible) to remove the
ExternalInterface requirement. You can write code in your AIR
application javascript to subscribe directly to events from the SWF
using addListener() and call functions directly on the SWF object
(Flash/Actionscript is not my primary development environment... so
if I have gotten the terminology wrong I apologize, but I HAVE
written a flash application that worked as I describe). My SWF
actually works embedded in HTML or not using the code "if
(ExternalInterface.available) {
ExternalInterface.addCallback("setIsPlaying", setIsPlaying ); }"
2) Somehow add a HTMLLoader in a new child window (with
transparent = false) to the stage as a new child. I have not yet
figured out exactly how to do this, so If anyone can provide
information on how to do this, I too would be appreciative.

Similar Messages

  • Flash is not visible when transparent is set to true

    Hi everyone. I'm writing an application in HTML and
    Javascript which uses <OBJECT> and <EMBED> to display a
    flash. The flash is invisible when transparent = false in the
    application settings xml file.
    I used the following to HTML code to display the flash:
    quote:
    <p width="100%" align="center"><embed pluginspage="
    http://www.adobe.com/go/getflashplayer"
    src="
    http://www.yourminis.com/Dir/GetContainer.api?uri=yourminis/yourminis/mini:youtube"
    wmode="transparent" width="370" height="280"
    FlashVars="height=270&xheight=280&xwidth=370&width=360&uri=yourminis%2Fyourminis%2Fmini%3 Ayoutube&swfurl=%2Fwidget%5Fyoutube%2Eswf&"
    type="application/x-shockwave-flash"
    allowScriptAccess="always"></embed><br /></p>
    This is a flash file that is designed to run on a domain
    other than where the flash file is hosted on. More information on
    the flash at
    http://www.yourminis.com/minis/yourminis/yourminis/mini:youtube
    So the question is... how do I display a flash file when
    transparent is set to true?
    OS: Windows XP
    CPU: Intel Centrino Pro

    This means that the SWF is written so that it only works when
    embedded in a web page. When you add the SWF to the stage as a
    stand-alone display object using addChild() it is not being hosted
    in the web page.
    You have 2 options:
    1. Modify the SWF code (if possible) to remove the
    ExternalInterface requirement. You can write code in your AIR
    application javascript to subscribe directly to events from the SWF
    using addListener() and call functions directly on the SWF object
    (Flash/Actionscript is not my primary development environment... so
    if I have gotten the terminology wrong I apologize, but I HAVE
    written a flash application that worked as I describe). My SWF
    actually works embedded in HTML or not using the code "if
    (ExternalInterface.available) {
    ExternalInterface.addCallback("setIsPlaying", setIsPlaying ); }"
    2) Somehow add a HTMLLoader in a new child window (with
    transparent = false) to the stage as a new child. I have not yet
    figured out exactly how to do this, so If anyone can provide
    information on how to do this, I too would be appreciative.

  • Flash objects not showing in IE but in firefox?

    Just wondering why my flash menu and banner shows in firefox
    perfectly but in IE its all disabled?
    Please tell me theres a simple snippet of code to add
    somewhere so IE will trust my non threating menu bar and banner.
    Ive searched other places and no one seems to know why this
    happens.

    show the page url if you have uploaded it to a web server, or
    show your html.

  • Why "stop download video" feature not show when playing video

    why "stop download video" feature not show when playing video,, i hope you can give me Solution for this problem because when i using 3g internet, it downlaod the video Quickly ,,, so it consume the Balance

    Do you have Flash installed?   Check HD > Library > Internet Plug-Ins
    If the Flash Player app is not in the Internet Plug-ins folder, download and install from here.
    When you post for help, please state which OS X is installed.
    If you aren't sure, click About this Mac from your Apple menu 
    Troubleshooting advice can depend on that information.

  • Hundreds of my iPhoto pictures will not be copied and will not show when I double-click on them.  When I do in iPhoto an exclamation surrounded by a triangle appears.  Though I can see the picture in the small tiles below it will not expand.

    Hundreds of my iPhoto pictures will not be copied and will not show when I double-click on them.  When I do in iPhoto an exclamation surrounded by a triangle appears.  Though I can see the picture in the small tiles below it will not expand.  I also cannot attach any of these pics into an e-mail or into any other file.  I have already went through all 3 Repair options and when that did not solve it went through a complete Rebuild.  Any Help?!  Any Suggestions on how to fix this?!  I have spent almost 2 days now going through all of the published help.
    I have backups going back 6 months - I have not had the real need to check every album before - but - all of my backups also have this same problem.

    The triangle with the ! indicates that the connection between the thumbnail and the orginal is missing - this can be caused by many things including database corruption and user action emoving the originals photos on urpose or by accident
    If the database is corrupted then rebuilding is the solution - backup and depress the option and command keys, launch iPhoto and rebuild your database  --  if the iPhoto rebuild does not cure the problem then download iPhoto Library manager and use its rebuild command which creates a totally new library leaving the existing one untouched
    If you have deleted the photos then you need to start over with a new library and import the photos you have not deleted into it
    You can select one of the problem photos and use the reveal original in finder commander (file menu) to see if the original is there - if it is a finder window will open showing it
    LN

  • My external hard drive does not show when I am trying to open a document in Office Org??

    My external hard drive does not show when I am trying to open a document in Office Org?? When looking in the about IMAC system support it shows as being connected. Any ideas??

    Does the drive show up under 'Devices' in Finder?

  • Preview icon not showing when in thumbnail. (Sketchu

    Hello,
    I recently updated my MBP to Yosemite and installed sketchup on it.
    The preview icon of my sketchup files are not showing when in thumbnail. But as i increase the size of the icon from thumbnail in viewoption i.e from 64px x 64px to 124px x 124px it shows. So my icon is shown as blank without any app logo. Also when i change my view from thumbnail to coverflow or something it shows. Otherthan thumbnail everything works.
    So where is the error in it?
    Please help...
    Thanks
    Amar

    Try the standard fixes:
    - Rest. Nothing is lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears. - Restore from backup
    - Restore to factory defaults/new iPod.

  • Battery icon dose not showing when i plug in to usb or power

    battery icon dose not showing when i plug in to usb or power? and not charging when phone is on

    I would try another cable or try the cable in another ios device
    to verify if the cable was broken or your iphones connector is

  • Need to send my back up email a reset security questions email but the option does not show when I click on password and security

    Need to send my back up email a reset security questions email but the option does not show when I click on password and security

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (97456)

  • Date not showed when report is viewed in PDF .

    Hi,
    We have a text field that shows the date on which the report is running.Date is not showed when report is viewed in PDF.But in HTML we can view them . Can any one help me out?
    Totally there are four pages for the report.

    I have observed the PDF driver iin EPM 11.1.2.x is not up-to-date and technically the Date (Text) is there just like in HTML. However, when you increase the View (Zoom in), it eventually does show up.
    I have chatted with Oracle Support, and they will not address it with a patch for now.

  • My control center and notification center are not showing when I swipe in there respective locations. Does anybody know why?

    My control center and notification center are not showing when I swipe in there respective locations. Does anybody know why?

    Thank you for the sugestion, but it was working fine both on the lock screen and on my home screen. I check all my settings and it is how it was from Friday, when I got the iPhone 5s. It just stop working.  The only way I can fix it is by shutting down the phone. It will work for a while, then it won't. 

  • Help: Records not showing when cube is placed under the Multiporivider

    Hi Experts,
    I have a Cube called Bcube with char Plant,calm year/month, material and Key Figure, Pqty
    When I generate a report on this Cube, everything looks fine and I see plants, year, etc in the report
    There are 2 other cubes:
    MCube also has char Plant,calyear/month, material and Key Figure: Pqty, Sqty, TQty, AQty
    DCube also has same as BCube: with char Plant,calyear/month, material and Key Figure Pqty
    When I place all three cubes under the multiprovider, the values from the BCube does not show up in reports
    e.g. in a simple report such as
    Row       :  Plant
    Columns:  Pqty, Sqty, TQty, AQty
    In the Multiprovider, under the Indentification of Characteristics, I checked the boxes for all three cubes whenever the same charactertic in all cubes showed up for identification: e.g..
    InfoProvider  InfoObject
    Bcube----
    Plant
    MCube-------Plant
    DCube -
    Plant
    and same for. e.g. 0Calyear
    and same for Key Figures, e.g. I checked all 3 boxes  for PQty which exists in each of the cubes
    1. Why is my data for BCube not showing when reporting against the multiprovider?
    2. what does it mean by checking the 3 boxes for Plant? and checking the 3 boxes for 0Calyear.
    Thanks

    Hi,
    regarding your questions:
    1. When I run listcube against the multiprovider, I only went to the output list to select the fields I needed in the output; then entered the particular cube e.g. BCube in the infoprovider field. That was it (NO other selection) and I got the described results I explained earlier. If you have a specific test for me to try, please let me know.
    2. Please find the settings in both characteristics and key figures for all cubes in the MULTIPROVIDER maintenance screen:
    Characteristic Assighment:
    0calyear -- 3 boxes checked for BCube, DCube & MCube
    Plant -- 3 boxes checked for BCube, DCube & MCube
    0Material-- 3 boxes checked for BCube, DCube & MCube
    Key Figure selection
    PQty-- 3 boxes checked for BCube, DCube & MCube
    Sqty --checked for DCube, this key fig is ONLY in DCube
    TQty--checked for DCube, this key fig is ONLY in DCube
    AQty--checked for DCube, this key fig is ONLY in DCube
    I hope this helps you to guide me.
    Or, were you referring to mappings in the transformations?
    Thanks

  • Flash Object not Found

    Dear Friend,
    I am using VC and trying to create attractive portal through it but the Flash object neither showing in tool bar nor in component. What should i do? Kindly tell me the solution.
    Regards
    Santanu

    Hi Santanu,
    Are you referring to the flash components feature? If so, you should know that it is available only in a recent updated systems.
    In 7.00 version starting SP22, and in Ehp1 starting SP5. Do you have a system as updated as these versions?
    Best regards,
    Udi

  • Adobe Flash up to date; firefox 9.0.1 installed. Flash does not show as plug in & Firefox states Flash not up to date. What to do

    Under plugins, I get the following message:
    For your safety, Firefox has disabled your outdated version of Flash. Please upgrade to the latest version.
    However, I updated to the version Firefox suggested. Flash does not show as a plugin. Plus, after updating, I continue to receive the message:
    Firefox has disabled your outdated version of Flash. Please upgrade to the latest version.
    Running Windows 7
    Firefox v 9.0.1
    What is wrong?

    The plugin check page only recognizes some common plugins that play media on web pages and not plugins added by security software like McAfee. So no need to worry about that. Just make sure that you keep all your software up to date, especially software that deals with internet access and security software (anti-virus software, firewall).

  • Hello, the "sign" feature does not show when i open a pdf document with reader (MAC)

    Hello, the "sign" feature does not show when i open a pdf document with reader (MAC)

    Hi mentane,
    Thank you for posting on the Adobe forums, what is the version of Adobe Reader you are working with.
    Open Adobe Reader>Adobe Reader>about Adobe Reader.
    Thanks,
    Vikrantt Singh

Maybe you are looking for

  • Creating pdf files from excel workbook

    I'm trying to convert an excel file to pdf. It contains 10 sheets and when viewing the entire workbook the total number of pages should be 15 pages. If I send it to print in adobe pdf. It starts creating different files for different sheets sometimes

  • Load an external gallery  file into a host div via Ajax method?

    I was just wondering if anyone has been able to get a spry gallery to work when placed within an external html file and loaded into the host div of a page using Ajax method to load. It must work remotely (on the Internet). I've tried and mutilated en

  • Reading a scale value for a condition

    I have a condition on VK12 with a scale value on it.  It's a perception minimum for a tax. I have a SD formula (937) on VOFM - Formulas - Condition Value.  There in some cases I want to check if a sum stored in gkmov is greater than this perception m

  • Will an audiobook I download from the library in WMA form expire or corrupt if I put it on my ipod?

    I have a classic Ipod and want to download audiobooks to it--some or MP# but some of them are WMA files.  My question is about the WMA files.  Will they expire if I transfer them to my ipod before the due date f the book?  Thanks for any help.

  • SQL Server License

    Hi Guys,                We have installed the CRM 5.0 development  and production server with the databae of MS SQL. While Installing CRM 5.0 we have installed the evaluation period of MS SQL . Servers were working fine from few months ,Suddenly the