i found an error.. when getting this to work, i first got a red cross over my 32bit apha png, that was because it couldnt find the transparent gif.. i pointed to a transparent gif, 1px and then, the image disappeared! i did some research in this htc document, and found that on line 43, "AlphaImageLoader(src='" + realSrc + "',sizingMethod='scale')"; ,sizingMethod='scale' should be deleted, now it works fine!
thanks again wolfie!
btw, when using style (in the image tag) it should be like this style="behavior: url('pngbehavior.htc');}" with single quotes, not like this style="behavior: url("pngbehavior.htc");}" with double quotes..
Necronom, your img tag should look like this:
<img src="32bit_alpha.png" class="png" />
if adding .png {behavior: url("pngbehavior.htc");} to your stylesheet, or like this:
<img src="32bit_alpha.png" style="behavior: url('pngbehavior.htc');}" />
if you dont use CSS