Kevin,
> Kevin Lindsey wrote:
>
> One more...
>
> Is there any work being done to allow the use of JavaScript objects as
> callbacks in event listeners? Or is this being saved for a later date
> (a lower priority)?
I am not sure I understand your question. You can already add event
handlers attributes with ECMAScript code in your SVG content and,
through
scripting, you can add event listeners, such as:
var upArrow = document.getElementById(...);
upArrow.addEventListener('click', myHandler, false);
....
function myHandler(evt) {
}
I hope this helps,
Cheers,
V.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]