- From: Jonathan Chetwynd <j.chetwynd@btinternet.com>
- Date: Tue, 29 Jun 2010 06:31:14 +0100
- To: www-smil@w3.org
- Message-Id: <88BC821E-998D-45EA-B43D-71DCE68339CD@btinternet.com>
SMIL and script
is there a way perhaps using ecmascript to move, for instance an
animation** to its start position?
Whilst a user might have buttons to play pause and rewind, but where
one or more individuals and or services which may be remote, is a
means provide for them to engage?
regards
Jonathan Chetwynd
** the attached file is in SVG by way of illustration.
what is sought is a way to emulate one and only one of the buttons
through script.
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1"
width="100%"
height="100%"
>
<title>Click on the green button then the grey button</title>
<text x="20" y="20" >Wait for animation, then click on the green
circle, then click the green rectangle</text>
<g id="neutral" fill="#cca" >
<set attributeName="fill" from="#cca" to="green"
begin="fillGreen.click" end="fillNeutral.click" />
<rect x="16" y="38" width="150" height="21" rx='4' ry='4'/>
</g>
<rect x="176" y="38" width="50" height="21" rx='4' ry='4'
fill="green" pointer-events="fill" cursor="pointer" id="fillGreen"/>
<rect x="176" y="78" width="50" height="21" rx='4' ry='4'
fill="#cca" pointer-events="fill" cursor="pointer" id="fillNeutral"/>
</svg>
Received on Tuesday, 29 June 2010 05:31:20 UTC