<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
I've just uploaded two examples:<br>
the first is a test of the little javascript on a simple html page,
without swfobject; if you use explorer 5.5 or 6.0 you'll see that it
works and png with alfablending are displayed in a correct way;<br>
in the second example I used swfobject, and  I.E. 5.5/6.0  won't render
png images correctly.<br>
 <br>
<ol>
  <li><a class="moz-txt-link-freetext"
 href="http://www.pointnet.it/PNGFix/Test.html">http://www.pointnet.it/PNGFix/Test.html</a></li>
  <li><a class="moz-txt-link-freetext"
 href="http://www.pointnet.it/PNGFix/swfobject.html">http://www.pointnet.it/PNGFix/swfobject.html</a></li>
</ol>
<br>
Thanks for you support<br>
Alessio Pellegrini<br>
<br>
<br>
David de Kock ha scritto:
<blockquote cite="mid001301c7203e$e1f21b70$0e01a8c0@test" type="cite">
  <pre wrap="">Do you have an example of a page with swfobject combined with your js?
And also a page with just the js working as it should?

-----Original Message-----
From: <a class="moz-txt-link-abbreviated"
 href="mailto:swfobject-bounces@lists.deconcept.com">swfobject-bounces@lists.deconcept.com</a>
[<a class="moz-txt-link-freetext"
 href="mailto:swfobject-bounces@lists.deconcept.com">mailto:swfobject-bounces@lists.deconcept.com</a>] On Behalf Of Alessio
Pellegrini
Sent: vrijdag 15 december 2006 12:01
To: <a class="moz-txt-link-abbreviated"
 href="mailto:swfobject@lists.deconcept.com">swfobject@lists.deconcept.com</a>
Subject: [SWFObject] conflict between swfobject and a javascript for
pngimages

Hi to all the mailing list,
I'm doing some tests because I'd like to use swfobject and a javascript 
which resolve IE 6.0 problems with png 24 bit images with alpha 
blending, i think it is time to use this format.

The script wouldn't work with swfobject.

here is the little script:


var arVersion = navigator.appVersion.split("MSIE")
var version = parseFloat(arVersion[1])

if ((version >= 5.5) && (document.body.filters))
{
   for(var i=0; i<document.images.length; i++)
   {
      var img = document.images[i]
      var imgName = img.src.toUpperCase()
      if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
      {
         var imgID = (img.id) ? "id='" + img.id + "' " : ""
         var imgClass = (img.className) ? "class='" + img.className + "' 
" : ""
         var imgTitle = (img.title) ? "title='" + img.title + "' " : 
"title='" + img.alt + "' "
         var imgStyle = "display:inline-block;" + img.style.cssText
         if (img.align == "left") imgStyle = "float:left;" + imgStyle
         if (img.align == "right") imgStyle = "float:right;" + imgStyle
         if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
         var strNewHTML = "<span> " + imgID + imgClass + imgTitle
         + " style=\"" + "width:" + img.width + "px; height:" + 
img.height + "px;" + imgStyle + ";"
         + <a class="moz-txt-link-rfc2396E"
 href="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader">"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"</a>
         + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>"
         img.outerHTML = strNewHTML
         i = i-1
      }
   }
}


And here a link to the home page of this script:
<a class="moz-txt-link-freetext"
 href="http://homepage.ntlworld.com/bobosola/pnghowto.htm">http://homepage.ntlworld.com/bobosola/pnghowto.htm</a>

Thanks very much, for any help or suggestion .

Alessio Pellegrini
_______________________________________________
SWFObject mailing list
<a class="moz-txt-link-abbreviated"
 href="mailto:SWFObject@lists.deconcept.com">SWFObject@lists.deconcept.com</a>
<a class="moz-txt-link-freetext"
 href="http://lists.deconcept.com/listinfo.cgi/swfobject-deconcept.com">http://lists.deconcept.com/listinfo.cgi/swfobject-deconcept.com</a>

_______________________________________________
SWFObject mailing list
<a class="moz-txt-link-abbreviated"
 href="mailto:SWFObject@lists.deconcept.com">SWFObject@lists.deconcept.com</a>
<a class="moz-txt-link-freetext"
 href="http://lists.deconcept.com/listinfo.cgi/swfobject-deconcept.com">http://lists.deconcept.com/listinfo.cgi/swfobject-deconcept.com</a>

__________ Informazione NOD32 1922 (20061214) __________

Questo messaggio  è stato controllato dal Sistema Antivirus NOD32
<a class="moz-txt-link-freetext" href="http://www.nod32.it">http://www.nod32.it</a>



  </pre>
</blockquote>
</body>
</html>