lewisje / svgweb

Automatically exported from code.google.com/p/svgweb
Other
0 stars 0 forks source link

In IE 6 changing xlink:href attribute doesn't change the image with flash rendering even with svgweb-2010-04-09-dracolisk version #545

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hallo,
I have the same problem of issue 456 (changing xlink:href attribute doesn't 
change the raster image with flash rendering) using this environment:

  svgweb-2010-04-09-dracolisk 
  MS-IE 6 web browser 
  Adobe Flash Player 10,0,22,87
  Windows XP SP3

In my SVG image I have:

...
<image id="TPNCLRIDGITGR1_SS08_" x="20" y="602" width="19" height="18" 
xlink:href="raster/ledVerdeOff.png"/>
...

and if I try to do this JS:

...
var test = elem.getAttribute("xlink:href");
...

the value of test variable is null, instead of espected 
"raster/ledVerdeOff.png"... Then, if I make this change:

...
elem.setAttribute("xlink:href", "raster/ledVerdeOn.png");
...

I can't see the right raster image and the elem.getAttribute("xlink:href") 
returns always null.

Thanks a lot

Original issue reported on code.google.com by francesc...@gmail.com on 27 Aug 2010 at 10:48

GoogleCodeExporter commented 8 years ago
with the display attribute I have no changes in flash rendering, but the 
attribute value is correctly valorized.

Original comment by francesc...@gmail.com on 27 Aug 2010 at 10:53

GoogleCodeExporter commented 8 years ago
Actually, this is most likely Issue 442, which is that we do not support that 
form of the API, because it is technically incorrect. Please let us know if 
that is the problem.

Original comment by grick23@gmail.com on 25 Nov 2010 at 7:07