[svg-developers] Re: The language that SVG Scripts against

2005-07-02 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, "kggsystem" <[EMAIL PROTECTED]> wrote: > Is there a reference to the Scripting language (and XML DOM) used by > the Adobe ASV3 viewer? Yes, Adobe provides the documentation about the viewer and the DOM its implements here:

[svg-developers] Re: The language that SVG Scripts against

2005-07-04 Thread Alastair Fettes
The following is part of the DOM and implemented by ASV 3: function foo( evt ) { var SVGDoc = evt.target.ownerDocument; var bar = SVGDoc.getElementById( "SPARK" ); } Basically if you have a reference to ANY element in the tree, you need to get its ownerDocument, then call getElementB

[svg-developers] Re: The language that SVG Scripts against

2005-07-07 Thread svg3nius
> > Is there a reference to the Scripting language (and XML DOM) used by > > the Adobe ASV3 viewer? > > Yes, Adobe provides the documentation about the viewer and the DOM its > implements here: > > so make use of that. > The DOM is documented

Re: [svg-developers] Re: The language that SVG Scripts against

2005-07-08 Thread Holger Will
svg3nius schrieb: > > > Is there a reference to the Scripting language (and XML DOM) used > by > > > the Adobe ASV3 viewer? > > > > Yes, Adobe provides the documentation about the viewer and the DOM > its > > implements here: > > > > so make u