--- In [email protected], "pothoven" <[EMAIL PROTECTED]> wrote:
> Instead of describing my problem in this post, I've tried to describe my > problem on this page > http://pothoven.blogspot.com/2006/06/help-with-dynamic-inline-svg.html > <http://pothoven.blogspot.com/2006/06/help-with-dynamic-inline-svg.html> > so I could add some screenshots and code samples. As for Firefox and the SMIL way of a mouseover/out (e.g. <set attributeName="fill" from="rgb(68,0,0)" to="red" begin="mouseover" end="mouseout" />) Firefox 1.5 does not support any SMIL in SVG so far at all. This will not change in Firefox 2.0 as far as I understand. You could however use DOM event handlers e.g. <svg:rect x="263" y="250.2" height="79.80000000000001" width="109" fill="rgb(68,0,0)" onmouseover="evt.target.setAttribute('fill', 'red');" onmouseout="evt.target.setAttribute('fill', 'rgb(68,0,0)');" /> As for embedded inline SVG with IE/Win and Adobe SVG viewer, I don't know of a way to get event handlers on any but the SVG svg element itself working. If you want full interactivity with the Adobe SVG viewer and IE then using the embed element (e.g. <embed type="image/svg+xml" src="file.svg" width="200" height="200"> ) seems the way to go. ------------------------ Yahoo! Groups Sponsor --------------------~--> Something is new at Yahoo! Groups. Check out the enhanced email design. http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/1U_rlB/TM --------------------------------------------------------------------~-> ----- 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/

