Flash Object not viewable within page

Hello, I've been having trouble adding a Flash content into pages (which I'm quite innexperienced at). My homepage for example, is supposed to be a flash site. But for some reason it does not play when inserted to an incredibly simple webpage, as you can see here; www.ethanguillemette.com
Instead of the flash site appearing, there is simply an empty white box. Now interestingly enough, the flash object is fine in and of itself, and can be viewed without problem (albeit far too large!) here; http://www.ethanguillemette.com/flashsite.swf
The following is the code for the index page. Pretty much all I did was create a wrapper, center it, and add a background color:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ethan Guillemette - Web Designer</title>
<style type="text/css">
body {
background-color: #91919B;
.flashwrapper {
margin: auto;
height: 480px;
width: 900px;
</style>
<script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
</head>
<body>
<div class="flashwrapper">
  <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="900" height="480" id="FlashID" title="Ethan Guillemette Flash Site">
    <param name="movie" value="flashsite.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="11.0.0.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="flashsite.swf" width="900" height="480">
      <!--<![endif]-->
      <param name="quality" value="high" />
      <param name="wmode" value="opaque" />
      <param name="swfversion" value="11.0.0.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>
</div>
<script type="text/javascript">
swfobject.registerObject("FlashID");
</script>
</body>
</html>
Does anyone know what hairbrained thing I'm doing wrong? Any help would be much appreciated!

Just as general info I'd like to add a couple of my observations.
There seems to be a number of very similar problems popping up in other Forums recently related to this same issue. I'm thinking that a recent Flash pluggin update is causing some of these problems.
For example, I can't see the .swf files in either of hans links... I haven't updated my Flash pluggin for awhile (10.0.45.2). OK, I can understand if I can't view the .swf.
But here is a similar problem posted over in the Flash Forum:
http://forums.adobe.com/thread/868573?tstart=0
I get a "download latest pluggin" message when attempting to view the posters page:
http://www.brendaportfolio.co.uk/test.html
However, I can direct download the .swf and view it just fine.
So the problem is not that I don't have the correct version pluggin for that particular .swf, but rather that I don't have the correct pluggin as required by the embedding code used, specifically:
<param name="swfversion" value="11.0.0.0" />
older versions of his .swf/pages used an embed method calling for older version of "swfversion" as a param, those work just fine.
So my guess is that in this posters case, the newer version pluggin IS required for his .swf, since I can't view the page. The old CS3 version, which used the old "AC_FL_RunContent" embed method only called for version 9 pluggin, while the .swf itself requires the latest pluggin.
Perhaps a lesson to be learned is that when creating Flash content, you may not want to always develop for the very latest version of Flash Player, since not everyone has updated their browers. A second lesson/observation is that the embed method used in CS5 (swfobject_modified.js) seems to be putting the cart before the horse, requiring the latest pluggin update even if the .swf does not need it.
Now I am all for using .swfobject, but NOT to display the Flash. swfobject is not needed, nor required to display Flash on a Web page. If the Web browser has the Flash pluggin a .swf will display just fine with some simple code like this:
<object data="path_to_file/file.swf" type="application/x-shockwave-flash" width="insert_width_of_movie" height="insert_height_of_movie">
  <param name="movie" value="path_to_file/file.swf">
  <param name="SomeOtherParam" value="ParamValue">
</object>
no other code, swfobject, or AC_FL_RunContent needed.
The purpose if using .swfobject is to provide Flash detection (not Flash display) and display alternate content if the Flash pluggin is missing or not up to date. But it appears now that the version of .swfobject used in CS5 has incorporated "get the latest version pluggin no matter what" rather than "get the appropriate pluggin for this .swf".
And yet one of the most powerful features of .swfobject is the most overlooked and underused, that of allowing you to create alternate content for SEO purposes. That alt content can completely remedy I Know Nothing at all's concerns:
On another note, you are aware that a 100 % Flash navigated site is the worst thing you can do from an SEO standpoint right?
From an old post:
If you think that Flash is somehow bad for SEO, it's time to dispell that MYTH!
If fact, in some circumstances I'll use Flash INSTEAD of just HTML because then I'll have better SEO than with just HTML alone.
http://www.worldbarefootcenter.com/
The link to World Barefoot Center in the above post is just one example. View the source code and you see a couple paragraphs of text along with regular HTML links.... but what displays is the Flash version of the image and Flash links.
The client provided the artwork for the page... and that's what they wanted to use a .jpg image. Well yes, that could be done in HTML but it would be virtually invisible to Google. So Instead I converted the image into a Flash .swf and used swfobject to display the Flash. swfobject allows you to create alternate content inside the <div> which also holds the Flash .swf, then when the page is loaded it detects if the browser has the Flash pluggin. If it does, it displays just the Flash content, if not, it displays the alternate content. Since almost everyone has the Flash pluggin, for most people the Flash version of the <div> will display.
The alternate content for that <div> can be any regular HTML text, images, media player, links, etc., anything that you would use if you were not using the Flash. Now the best part is that the alternate content can be "over the top" as far as optimizing for SEO, since it will not be seen by most viewers.
Here's another example of SEO with Flash.. again, the page is just a single image provided by the client:
http://www.ksowetsuits.com/
View the source code. The alt content is paragraph after paragraph of information about the site, including lists and links. If it was just the HTML, it might be kind of a boring Home page. But for SEO I can go "over the top" in promoting the site, since most viewers will never see that part... but it's all indexed by search engines. The end result is BETTER SEO using Flash than just HTML.
On another Web site, a Flash video is displayed, the alt content is the complete text narration of the video. Now how many people would take the time to read that if they could just watch the video instead?? again, better SEO with Flash than without. In fact in one case we had first page search result from that video narration within 4 hours of posting the page.
On still another site with a Flash video, the alt content is another video, but a .mov version, which will, in effect play Flash video on the iPhone (not possible you say??). Well since the iPhone does not have Flash pluggin, it simply displays the .mov version of the video, while everyione else sees the Flash version.
So anyway, if Flash is a part of your Web development, you should look into using swfobject and alternate content.
http://code.google.com/p/swfobject/
Best wishes,
Eye for Video
www.cidigitalmedia.com
Best wishes all,
Adninjastrator

Similar Messages

  • Flash objects not displaying in Firefox (but works fine in Chrome and IE)

    Well, I'm trying to embed a Shockwave Flash object into a website I'm building. It displays in Chrome and IE, but it doesn't show up at all in Firefox. It's just white space. Ive tried it on two machines, so it's presumably the code. Both the machines have Adobe Flash enabled... I'm not sure what the problem is. I've not worked with embedding Flash objects in HTML before, so, it's probably something really obvious. I just used the insert command on dreamweaver and it wrote the code that I'm using. If anyone can help me, it would be much appreciated. Here's my code:
    <pre><nowiki><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="99%" height="600" id="FlashID">
    <param name="movie" value="The file path" />
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="10.1.0.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="the file path" width="99%" height="76.5%">
    <!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="10.1.0.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]--></nowiki></pre>

    If you can't post an address for a page demonstrating the problem, could you check the Web Console (Ctrl+Shift+k) and Browser Console (Ctrl+Shift+j) for any messages related to the Flash media? For example, does either console show that Firefox is requesting the SWF file? Does either show an error in content type or any kind of security message?

  • Help w/ Flash Object inserted into DW page

    Hi,
    I'm using DW MX2004 on a Pwrbk G4. I created a Flash object
    (a page-flipping gallery) in Flash, and while it previews fine in
    Flash MX'04 (size of the .swf in pixels, I WANT it to be 1050 W
    & 713 H so the page is big enough to view well on a browser and
    the pages can flip correctly), once the object is inserted into DW,
    it isn't showing up as the same size. The default size in DW is 550
    x 440 I think, and when I try to change the dimensions--even to the
    exact size it was in Flash--the images once previewed are always
    distorted or the preview shows only part of the image and the pages
    aren't flipping (this, I believe b'cos the entire .swf movie isn't
    displayed so the corners can be dragged/clicked). I know I'm doing
    something wrong or missing some step, can someone help?
    Thanks

    I am not sure what exactly you are experiencing but it sound
    like something somewhat similar to what I recently went through. I
    tried to embed a swf in my HTML page using DW and there was a
    border that would appear that was not there in FLash. I eventually
    found a setting in Flash Publish settings that said " no border "
    ...this was under the "HTML" settings in the Publish settings
    dialog box. I published my html page and then cut most of the code
    from that page and manually embed it in my Dw html page. Kind of
    pain but it worked.
    Try publishing the HTML page from flash and then viewing that
    page in DW and see if your swf is the right size. It may be that
    you can't use DW to Embed your SWF.
    Jordy

  • Adobe Flash Player not working--Shockwave Flash Object not installing

    Ok...let's try this again.  Somehow my previous discussion that I had been working on with eidnolb got marked as "Answered" when it wasn't.  If you are reading this and are also having problems with Adobe Flash Player, please START YOUR OWN THREAD!  That allows someone to help you individually and will hopefully prevent MY question from being accidentally marked as "Answered" when it's not.  THANK YOU!
    Now to start the whole process over....
    1.  When I download the latest version of Adobe Flash Player, my computer says it's succesful.  I'm able to verify through Add/Remove Programs that it IS on the computer.  However, when I'm on a site that requires AFP--like Hulu or YouTube--I get a message that says I need to download the latest version.
    2.  When I was working with eidnolb before, we found that for some reason the Shockwave Flash Object wasn't on my computer, even though I uninstalled and installed AFP several times and also restarted my computer.
    3.  I use Windows XP Professional Version 2002, Service Pack 3 and Internet Explorer 8.  My computer also has AVG 9.0.830 for anti-virus protection and Spyware Blaster.  The only firewall I use is the standard Microsoft firewall that came already installed.
    4.  I am the administrator on my computer.  I have also made sure the following are disabled when I download AFP:  anti-virus program, anti-spyware program, firewall, all add-ons in Explorer, and any messenger programs.
    Thank you to whomever is available and willing to help me.  I truly appreciate it! 

    I had this problem too. I'm not an expert with this at all, but Adobe Support at:
                                                                                                           http://kb2.adobe.com/cps/155/tn_15507.html
                                                                                               and      http://kb2.adobe.com/cps/000/6b3af6c9.html
    said that if you try to use Flashplayer with Internet Explorer 8 (64 bit) it won't work and you'll just keep getting the message to "Install Flashplayer" over and over even if you can see in your files that you already have it installed. They told me to use the 32  bit version of IE  8, or another browser such as Mozilla Foxfire or Google Chrome (both of which are 32 bit).  Now I can watch Hulu with any of these three browsers. I didn't have to turn of AVG at all; but I have AVG  2011 Free Version 10.0.1170 downloaded from  http://www.download.com .  Also,  according to the first website shown above,  you don't have the latest version of Flashplayer,  which is recommended by Adobe.

  • Flash object not represented in Design view

    When I had CS3 and I put in a flash object into my design there was a place holder or grey box that represented where teh flash would be. I no longer see it anymore and I am missing it. Then best i can do is get one of those little yellow icons that lets you know there is a script there to show up.
    How do i tun on the place holder version again. (Not really a place holder but I am not sure what to call it)
    Thanks,
    Houston

    Using CS4 I just did a test and inserted a flash object and could see a grey box with the 'F icon' in the middle.
    Have you checked  View>Visual Aids> Invisible Elements is ticked?
    Not sure if this is causing you not to see it - but it's the only suggestion I have  :-)

  • Flash object not updating (Captivate 6)

    I'm using a flash object on one of my slides. This is a help file. The file was created in Captivate, published, and then I'm putting the flash object onto a slide. When this slide is referenced, the flash file plays. It's a few static screens with forward and back buttons. The issue is that on one of the screens, the wrong text was inserted. I fixed the text, re-published, deleted the flash object from the slide, and put the new one there instead. But when I run the project, it still shows the old version, with the wrong text. I'm not sure why this is. The source file was changed and updated. I've tried restarting the computer in case it's being help in memory, but still, it keeps showing the old version with the wrong text.

    I tried adding a random button to the file, publishing, and using it again. This time, the button didn't show up, but the text updated. So I deleted it and tried the original file again. Still showing incorrect text. I opened the file, added a button, saved it, deleted the button, republished, reinserted the flash file, and now it works. So maybe there have to be changes saved for the file to update? Not really sure how it worked, just glad that it did.

  • 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

  • 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.

  • Flash file not looping within Dreamweaver

    I have toggled the loop "on" on Dreamweaver and made sure the file was looped in Flash as well. It will not loop. Is something wrong in the coding? Thanks for your help.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <link href="media_distinct css.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper">
      <div id="header">
        <ul id="mainNav" class="MenuBarHorizontal">
          <li><a href="index.htm" title="Our Home Page">Home</a></li>
          <li><a href="#" title="about us">About</a></li>
          <li><a href="reels.html" title="Video Examples">Reels</a></li>
          <li><a href="#" class="MenuBarItemSubmenu">Production</a>
            <ul>
              <li><a href="#">TV Ads</a></li>
              <li><a href="#">Corporate Marketing</a></li>
              <li><a href="#">Graphic Design</a></li>
              <li><a href="#">Web Design</a></li>
              <li><a href="#">Live Broadcast</a></li>
              <li><a href="#">Print</a></li>
              <li><a href="#">Wedding</a></li>
            </ul>
          </li>
          <li><a href="#">Consultation</a></li>
          <li><a href="#">Coming Up</a></li>
          <li><a href="#">Contact</a></li>
        </ul>
      </div>
      <div id="mainContent">
        <div id="videoReels">
          <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="474" height="625" id="FlashID" title="video reels">
            <param name="movie" value="summary reels.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="summary reels.swf" width="474" height="625">
              <!--<![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>
        </div>
      </div>
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("mainNav", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    swfobject.registerObject("FlashID");
    //-->
    </script>
    </body>
    </html>

    Looping a Flash movie is done by design, not by some settings you make in the Publish Settings or the html embedding code.  If you make sure that you have no stop(); commands at the end of the timeline in the Flash Movie then it will automatically loop.  If the file does not use the timeline, but you instead have some component playing, such as a video or something, then you need to build in the controls that will detect the end of play of that component and reset it all to play again.  You may need to head to the Flash forums to get help with this.

  • Flash Files not Viewable in IE -

    First off - the site is www.carlylemusic.com - and I am
    trying to figure out why most IE is not showing my flash/shockwave
    files -
    It all works and views beautifully in Mozilla Firefox - but I
    am not sure what may causing the problem.
    I am new to this - Just now getting used to using Dreamweaver
    - formally used Front Page 2003 - and also new to Flash...Have
    tried troubleshooting but have found that it is not as clear and
    direct as what I am used to.
    Galynne

    It's IE-only behaviour as a result of changes Microsoft made
    earlier this
    year to their browser, regarding how Active Content (Flash,
    Quicktime etc)
    is handled, after losing a high profile court case.
    http://blog.deconcept.com/2005/12/15/internet-explorer-eolas-changes-and-the-flash-plugin/
    Background:
    http://en.wikipedia.org/wiki/Eolas
    See also
    http://www.adobe.com/devnet/activecontent/
    If you're running Dreamweaver 8.0.2, the fix is already built
    into DW's
    interface.
    If not, try
    http://blog.deconcept.com/swfobject/
    And, be aware that a page with no actual content is not a
    great way to
    achieve good search engine ranking....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "galynne" <[email protected]> wrote in
    message
    news:eokdbj$kpl$[email protected]..
    > First off - the site is www.carlylemusic.com - and I am
    trying to figure
    > out
    > why most IE is not showing my flash/shockwave files -
    > It all works and views beautifully in Mozilla Firefox -
    but I am not sure
    > what
    > may causing the problem.
    > I am new to this - Just now getting used to using
    Dreamweaver - formally
    > used
    > Front Page 2003 - and also new to Flash...Have tried
    troubleshooting but
    > have
    > found that it is not as clear and direct as what I am
    used to.
    >
    > Galynne
    >
    >

  • Excelsius flash object not displaying in DHTML viewer

    We are using Crystal 2008 and ASP.NET 2.0.
    When executing a Crystal report containing an Excelsius object and viewing it in the DHTML viewer, nothing comes up. This is going through a web page and ASP.NET.
    There is a blank spot where the flash file should go but nothing else. It works when running it in Crystal reports. Right-clicking on the space shows the Adobe flash properties but nothing else.
    Are there any special considerations we need to take into account when viewing an Excelsius object in the DHTML viewer on the web?

    I've just tried it and it works fine. I am using CR 2008, SP 1 and .NET 2008.
    SP 1 is here:
    https://smpdl.sap-ag.de/~sapidp/012002523100010503722008E/cr2008_sp1.exe
    Ludek

  • Flash button not showing on page

    just new to flash cs3, but have been using dream weaver cs3
    for a while now, I am trying to add a flash button to a page its
    showing up when i preview it on my own computer, I uploaded all the
    files to root folder just cant under stand whats wrong, the site is
    http://www.poxh.com in case any one
    needs to see code, any help on this would be great
    Thanks

    David,
    I don't know what that file is. Can you elaborate?
    Thanks,
    Chris
    quote:
    Originally posted by:
    Newsgroup User
    chriscatalano wrote:
    > Hopefully this is a simple problem. I've added a Flash
    Button via the Insert
    > Media -> Flash Button in DW8. Unfortunately the
    button does not show up when
    > the php page is loaded up to the server. And yes, I did
    make sure to upload
    > the button file.
    But did you upload this file?
    Scripts/AC_RunActiveContent.js
    David Powers
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "Foundation PHP 5 for Flash" (friends of ED)
    http://foundationphp.com/

  • Jdev 1013  ADF - View Object not bound - Refreshed page not showing ctrls

    I have a view object that i am using for input form on a page by exposing in a data control.
    When the form is submitted it does some db operation based on user input and comes back.
    My problem is when i enter the same page again for doing another operation of the same kind,
    i refresh this view object in one of the application module's methods.
    When the page shows up eventually, i am not finding the input fields on them.
    I guess there is some sort of binding issue to the view object here.
    The code in the application module's method to refresh the view module is as simple as:
    getVParams().clearCache();
    VParamsRowImpl row =
    (VParamsRowImpl )getVParams().createRow();
    row.setValue(100);
    getVParams().insertRow(row);
    Any idea why the bindings is not picking up the new row and connecting it to the form?
    By the way i am calling the same method when displaying the form for the first time it works. Only
    the subsequent calls to the form messes up.
    Any help will be much appreciated.

    Yes i am calling my custom method in application module. I understood that the same page bindings get invoked in two parts, once when the page is loaded and once when the values are submitted by the user. When the bindings are executed when the user is submitting the data from the page adfFacesContext.postback is true and at that i am not interested in creating the new row again by calling my method. Hence this condition in invokeAction. When i debug, the methods are getting called properly. Only when the page is rendered again, it is not picking up the new row.
    I am working around this now, by creating the row only once from the appmodule's method and then reusing the same created row in subsequent loadings by resetting the attributes alone.

  • Is there any way to make flash for android in firefox "lock-in", that is control the flash content, not move the page when moving my fingers?

    Like when i want to increase sound on youtube and it moves the page not the sound slider

    Tap the fullscreen button on the Flash video?

  • 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.

Maybe you are looking for

  • Purchase Order Creation from ME5A Report

    Hi experts, My client wants Purchase Order Creation from ME5A Report. He wants show Open Purchase Requisition through ME5A report then he will select Purchase Requisition Number or line item for po creation from there only. Please advice how I can ma

  • Unexpected NTFS permissions behavior

    I am administering a home server running Windows 2008 R2 (accessed by several Windows 8.1 clients) and have run into an NTFS permissions issue I do not understand. On this server there is a S drive that contains all the online storage for our network

  • When I try to open iTunes, I receive a QuickTime failed to initialize (error-2096).

    When I try to open iTunes, I receive:  "QuickTime failed to initialize (error - 2096).  It also tells me to unistall iTunes and then install iTunes again.  If I uninstall iTunes, will I lose all my songs and videos?

  • Narrative Report

    Hi, What is Narrative Report??.....how to create a Narrative Report Regards Raghu

  • Creating Adobe PDF on-line

    It is taking me hours to create Adobe PDF on-line and then to download the file. Why could this be happening? Joe Fleming