AdobeSVGV: default LowQuality trick

For interested persons: There is the way to enable LowQuality rendering (without antialiasing) by default, when rendering a svg file embeded in html, with AdobeSVGV :

--------------------------------------------------------------------------------

<HTML>
..........................
<BODY onload="DefaultQuality();">
<EMBED WIDTH="640" HEIGHT="480" SRC="xxx.svg" NAME="xxx"/>
.........................
</BODY>
</HTML>
<script language="JavaScript">
..............
function DefaultQuality()
{
document.xxx.setDefaultAntialias(0);
}
</script>

--------------------------------------------------------------------------------


Victor

Received on Tuesday, 27 June 2000 05:38:25 UTC