Den 2006-09-22 11:24:53 skrev revelonshift <[EMAIL PROTECTED]>:

> I tried the same yesterday without success but
> just today realize to get initial transform object I have to specifify
> initialization in SVG like this transform="matrix(1 0 0 1 0 0)" (for
> the fist time).

You could use the DOM to initialize the list when you really need it:

var elm = document.getElementById("some_transformable_element");
var list = elm.transform.baseVal;
if (list.numberOfItems == 0)
        list.initialize(document.rootElement.createSVGTransform());
var item = list.getItem(0);
/* manipulate item */

-- 
David Vest <[EMAIL PROTECTED]>


-----
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/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/svg-developers/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:[EMAIL PROTECTED] 
    mailto:[EMAIL PROTECTED]

<*> 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/
 



Reply via email to