Well, since this does not seem to be inspiring anybody *g*, I 
decided to mock up a small simple exemple that describes better 
problem #1. Here it is:

<?xml version='1.0' standalone='no'?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 
1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
<svg width='500' height='500' version='1.1' 
xmlns='http://www.w3.org/2000/svg'>
<defs>
        <rect id='land' x='250' y='250' width='20' height='20' 
style='stroke:pink;fill-opacity:0.1;stroke-opacity:0.9'>
                <animate attributeType='CSS' attributeName='stroke-
width' begin='mouseover' end='mouseout' dur='2s' keytimes='0s; 1s; 
2s' values='1; 5; 1' repeatCount='indefinite'/>
        </rect>
</defs>
<rect x='200' y='250' width='20' height='20' style='stroke:pink;fill-
opacity:0.1;stroke-opacity:0.9'>
        <animate attributeType='CSS' attributeName='stroke-width' 
begin='mouseover' end='mouseout' dur='2s' keytimes='0s; 1s; 2s' 
values='1; 5; 1' repeatCount='indefinite'/>
</rect>
<use xlink:href='#land' x='50' y='0' />
</svg>

With this code, I would expect to have two squares that have the 
same animation, ie a border that grows and vanishes endlessly while 
the mouse is on it. When the mouse is out, I'd expect it to be quiet 
(no animation).

Actually, the square on the left (the in-line plain declared rect) 
is the way I want it to be. The one on the right (declared with 
<defs> and instanciated with <use>) is NOT. The animation starts 
well, but it does not end onmouseout for this one.

So, is this a bug with Adobe's plugin (beta 6 on IE6), or am I doing 
wrong assumptions?

Thanks in advance for your inputs.

Brezh.





-----
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
---- 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to