R
Rahul
Hi,
I am trying to use SVG for some basic animation stuff. It has
something like this:
<rect id="rec" x="60" y="100" width="20" height="20" stroke="yellow"
stroke-width="1" style="fill:black" >
<animate id="recta" attributeName="height" attributeType="XML"
begin="0" dur="1.2s" fill="freeze" from="20" values="10; 100; 0; 25;
50; 150; 0" repeatCount="indefinite"/>
</rect>
I am trying to change the rectangle attributes by specifying a set of
values in the values attribute. But is there a way I can specify that
this value has to be read from a different file (this will be updated
with the newest value)?
Something like:
from="20" values=#UPDATEDFILE
And this updated file will contain the newest value.
Thanks
I am trying to use SVG for some basic animation stuff. It has
something like this:
<rect id="rec" x="60" y="100" width="20" height="20" stroke="yellow"
stroke-width="1" style="fill:black" >
<animate id="recta" attributeName="height" attributeType="XML"
begin="0" dur="1.2s" fill="freeze" from="20" values="10; 100; 0; 25;
50; 150; 0" repeatCount="indefinite"/>
</rect>
I am trying to change the rectangle attributes by specifying a set of
values in the values attribute. But is there a way I can specify that
this value has to be read from a different file (this will be updated
with the newest value)?
Something like:
from="20" values=#UPDATEDFILE
And this updated file will contain the newest value.
Thanks