1 Reply Latest reply: Mar 30, 2007 12:52 AM by Newsgroup_User RSS

    Compatibility Issue

    purple_am Community Member
      Hi guys

      Below is the code i used in my html to make my swf 100 % and noscale. The issue is that it works fine in explorer 7 but my swf is squashed in firefox and netscape. Site can be viewed HERE Anyone knows about this issue, is there a workaround.

      Thanks.
        • 1. Re: Compatibility Issue
          Newsgroup_User Community Member
          purple_am wrote:
          > Hi guys
          >
          > Below is the code i used in my html to make my swf 100 % and noscale. The
          > issue is that it works fine in explorer 7 but my swf is squashed in
          > firefox and netscape. Site can be viewed
          > http://www.gilbertsoobraydoo.com Anyone knows about this issue, is there
          > a workaround.
          >
          > Thanks.
          >
          > <script type="text/javascript" src="Scripts/flashobject.js"></script>
          > </head>
          > <body>
          > <div id="flashcontent" style="width: 100%px; height: 100%px"></div>
          > <script type="text/javascript">
          > var fo = new FlashObject("swf/gilsoo.swf", "animationName", "100%",
          > "100%", "8", "#3D3838");
          > fo.addParam("allowScriptAccess", "sameDomain");
          > fo.addParam("quality", "high");
          > fo.addParam("scale", "noscale");
          > fo.addParam("loop", "false");
          > fo.write("flashcontent");
          > </script>

          HI! I noticed that your flashobject is quite old. you should change it to
          the new one which is now called. swfobject and many fixes have being added
          since. http://blog.deconcept.com/swfobject/

          I would start there first as it may fix the problem.

          Paul