[svg-developers] Re: event listeners in svg tiny

2007-10-09 Thread shydisturbedboy
if i register the root, the elements will also be registered right? does this also apply for jsr 226? for mobile phones? and in DOMActivate, what does activate mean? - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit

[svg-developers] Re: event listeners in svg tiny

2007-10-08 Thread shydisturbedboy
doc = svgImage.getDocument(); svg = (SVGSVGElement)doc.getDocumentElement(); EventTarget t = (EventTarget)svg; t.addEventListener(click, new LayerManager(), false); in the LayerManager class i just print the ids of the element.. i also tried this code: doc = svgImage.getDocument(); svg =

[svg-developers] Re: event listeners in svg tiny

2007-10-08 Thread shydisturbedboy
anyone? - 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:

[svg-developers] Re: event listeners in svg tiny

2007-09-29 Thread shydisturbedboy
Hi Doug, sorry that i didn't clearly explain my question.. i am trying to make a midlet(jsr-226). here's the code: doc = svgImage.getDocument(); svg = (SVGSVGElement)doc.getDocumentElement(); EventTarget t = (EventTarget)svg; t.addEventListener(click, new

[svg-developers] event listeners in svg tiny

2007-09-28 Thread shydisturbedboy
do i have to register all the elements in the svg? i tried adding event listeners on the root element but i can't click on an element.. i can only access the root element.. how can register all the elements all at once? - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit

[svg-developers] Re: display question

2007-09-27 Thread shydisturbedboy
so even if i have a lot of elements in a svg file, if i set the display of some elements to none, it will 'ignore' those elements.. thanks! - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership

[svg-developers] display question

2007-09-26 Thread shydisturbedboy
if i set the display to none, will it affect the performance? will it be faster for the svg file to 'react'? why is this? - 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 *

[svg-developers] how to make shapes not change in size when zoomed?

2007-09-18 Thread shydisturbedboy
how do i prevent the shape size to change if zoomed? for displaying roads/signs.. - 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:

[svg-developers] Re: how to tile a svg programatically?

2007-09-07 Thread shydisturbedboy
anyone? - 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:

[svg-developers] how to get the coordinates of the visible area on the canvas?

2007-09-04 Thread shydisturbedboy
how to get the coordinates of the visible area on the canvas? - 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:

[svg-developers] guidance/suggestion needed

2007-05-22 Thread shydisturbedboy
if i were to make a road network/map editor, what are the stuff that are needed by the user? do i have to have a table for the roads and structures? does anyone know an online example of a road network editor? or even a screenshot of one? thanks - To unsubscribe send a message to: [EMAIL

[svg-developers] Re: guidance/suggestion needed

2007-05-22 Thread shydisturbedboy
thank you sir! that is a great place for a noob like me.. - 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:

[svg-developers] Re: a few quiestions...

2007-05-18 Thread shydisturbedboy
i tried solution C but it did not work for me.. now i am trying to recalculate the mouse coordinates.. still figuring it out though - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership Yahoo! Groups

[svg-developers] what is the best approach in drawing shapes via mouse?

2007-05-14 Thread shydisturbedboy
i am going to use batik and i think my approach is very bad (for a rect) - on mouse down, i start to make the shape by setting its x and y coordinates, add the id, fills, stroke.. - on mouse move while mouse down, i add the element to the svg and updates the element by translate.. - on mouse

[svg-developers] Re: a noobie and a lot of questions.. please help...

2007-05-03 Thread shydisturbedboy
thanks for the reply! but what i mean is can i add interactivity in the svg by using batik and java without javascript? and can i do the same with tinyline? - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my

[svg-developers] a noobie and a lot of questions.. please help...

2007-05-02 Thread shydisturbedboy
i have to make a gis application and my adviser suggested using svg.. right now i'm thinking that i will use batik, but i am confused.. what does batik do? if i program with batik, can i still make interactive svg? what i know is interactivity with svg is done with javascript and i saw the