Re: [svg-developers] Re: Starting and Stopping Animation

2006-01-27 Thread Fulio Pen
Hello, Thank all for your help. After looking at all the suggestions, I took the method in following page: http://pilat.free.fr/tutorial2/example/pauseAnimations.svg But there are some problems with my code. Please look at them in following page:

[svg-developers] Re: Starting and Stopping Animation

2006-01-25 Thread pilatfr
Hi, You can use pauseAnimations() and unpauseAnimations() on svg root element See example http://pilat.free.fr/tutorial2/example/pauseAnimations.svg Michel PS This functions are not implemented in Opera 9 beta ... --- In svg-developers@yahoogroups.com, Fulio Pen [EMAIL PROTECTED] wrote:

Re: [svg-developers] Re: Starting and Stopping Animation

2006-01-25 Thread Peter Thompson
Here is another example with pause/unpause animation: http://svg-whiz.com/svg/PausePlay.svg You can also start the animation when some event takes place (e.g., the user clicks on an element). I can't point you to an on-line reference for this, but the following fragment shows how you do this in

Re: [svg-developers] Re: Starting and Stopping Animation

2006-01-25 Thread becks xlover
Hi Peter, Can this works with the path element? I want to do the following: When user moves mouse on the path shown, it will display a text just as a tooltip. Thanks in advance Rgds, David Peter Thompson [EMAIL PROTECTED] wrote: Here is another example with

Re: [svg-developers] Re: Starting and Stopping Animation

2006-01-25 Thread Peter Thompson
Yes. You can do something like this: text x=55 y=45 visibility=hiddentooltip set attributeName=visibility to=visible begin=path7.mouseover/ set attributeName=visibility to=hidden begin=path7.mouseout/ /text path id=path7 d=M50 50 L200 50 200 200 fill=none stroke=red/ The text displays when