--- In [email protected], "cormacinfodes" <[EMAIL PROTECTED]> wrote: > Furthermore i would like to know if its possible using SVG/SMIL to have > a timeline that you can drag which correlates to time in the animation, > so that people can scrub through the animation.
Yes, SVG/SMIL does provide this to some extent. Have a look at the setCurrentTime method of the SVGSVGElement interface. I'm not sure what the implementation status of this method is in different viewers however. You probably wouldn't want to animate whilst dragging so you might want to wrap each call to setCurrentTime in a pair of calls to unpauseAnimations and pauseAnimations (also in the SVGSVGElement interface). Of course, you'll need to draw the slider and handle the mouse events yourself. Regards, Brian. ------------------------ Yahoo! Groups Sponsor --------------------~--> Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.com/2jUsvC/tzNLAA/TtwFAA/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/

