- From: Andrei Rubina Thomaz <andrei@ufrgs.br>
- Date: Tue, 5 Dec 2000 10:06:56 -0200
- To: <www-amaya-dev@w3.org>
Received on Tuesday, 5 December 2000 07:04:52 UTC
The SVG documents created with Amaya 4.1 don't work with SVG Adobe Plug-in 1.0. I had to change the header:
Amaya original:
<?xml version="1.0" encoding="iso-8859-1"?><svg xmlns="http://www.w3.org/2000/svg" width="10cm" height="11.1cm">
<rect y="69px" x="65px" width="197px" height="142px"
style="stroke: #0000FF; fill: #0000FF"/>
<circle cy="222px" cx="190px" r="80px"
style="stroke: #FF0000; fill: #FF0000"/>
</svg>
to work with Adobe Plug-in:
<svg width="10cm" height="11.1cm">
<rect y="69px" x="65px" width="197px" height="142px"
style="stroke: #0000FF; fill: #0000FF"/>
<circle cy="222px" cx="190px" r="80px"
style="stroke: #FF0000; fill: #FF0000"/>
</svg>
who is wrong?
bye
andrei@ufrgs.br
Received on Tuesday, 5 December 2000 07:04:52 UTC