[svg-developers] SVG scrollbar

2006-09-05 Thread chmavrog
Hi everyone,

i have a  element in an svg application for Firefox,that someone 
uses in order to draw UML classes.

I need a scrollbar in order to move vertically the drawing elements 
and to increase the size of the g element.I need to move only the 
childs of the g element not the whole screen

How can this be accomplished?
Is there a script for implementing a scrollbar?  

Thanks
Chris





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

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





[svg-developers] getBBox in Firefox

2006-07-11 Thread chmavrog
is something wrong with getBBOX in FF?
the following code
 var tmpWdth=parseInt(this.nameElement.getBBox().width)+10;
produces the following message

Error: [Exception... "Component returned failure code: 0x80004005 
(NS_ERROR_FAILURE) [nsIDOMSVGLocatable.getBBox]"  
nsresult: "0x80004005 (NS_ERROR_FAILURE)"  location: "JS frame :: 
http://localhost/backup/Resources/UMLClass.js :: updateRegionClass :: 
line 259"  data: no]
Source File: http://localhost/backup/Resources/UMLClass.js
Line: 259

any help?





 Yahoo! Groups Sponsor ~--> 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/1U_rlB/TM
~-> 

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

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





[svg-developers] Post URL in FireFox

2006-06-21 Thread chmavrog
Hi everyone,
Here are my questions
Please confirm my answers

1.If i want to send svg data on a server-side script, in order to save 
them with XMLHttpRequest in FF1.5, do i have to use POST in the .open 
method for XMLHttpRequest  object or GET is enough?(TRUE -POST must be 
used).
2.If i want to get svg data from the server-side, in order to load 
them in a svg dom with XMLHttpRequest in FF1.5,i have to use GET in 
the .open method for XMLHttpRequest?(TRUE)

3.Foe ASV/IE i must use postURL(For sending data) and getURL(For 
retrieving DAta)(TRUE) 





 Yahoo! Groups Sponsor ~--> 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/1U_rlB/TM
~-> 

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

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





[svg-developers] My Own Right-Click Menu

2006-06-15 Thread chmavrog
Hi everyone,

Here is my situation.

I want to build a custom menu, for doing some actions using Javascript 
and svg elements(No use of context menu)for FF and IE/ASV3.
My questions are:

1.How i detect rigth-click from left-click?
2.How can i not shown the default menus, that FF and ASV shows,when 
making right-click and instead show mine?

Thanks in advance,
Chris







 Yahoo! Groups Sponsor ~--> 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/1U_rlB/TM
~-> 

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

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





[svg-developers] Saving SVG created content.I am Confused!!

2006-06-13 Thread chmavrog
Hi everybody,

I have a group element that acts as a canvas to draw dynamically UML 
Classes.I want to save the created diagram so that i can load it and 
edit on later.
I have found a wrapper object for making NetWorks requests for 
IE/ASV3 and FF 1.5.(getXMLData Object from Cartonet)
I am a little bit confused about the order of the implementation.So 
here is what i have in mind.

1.For every childNode of the group element serialize the childNode.
2.Send the produced serialized result(Is it markup result?) in 
server and use PHP Script to create a .txt file with the markup 
serialized code.
3.Load the .txt file into canvas and process the markup code to 
display it.

Is this ok?
Is there another way around?

Thanks in advance
Chris 

 






 Yahoo! Groups Sponsor ~--> 
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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




[svg-developers] Re: What this error mean in FF?

2006-06-08 Thread chmavrog
Björn thanks for the reply,

Indeed when i create the rectangles i  put inside text and setting
fontsize like this

this.nameElement=document.createElementNS(svgNS,"text");
this.nameElement.setAttributeNS(null,"x",x+1);
this.nameElement.setAttributeNS(null,"y",y);
this.nameElement.setAttributeNS
(null,"style","fill:#000;font-size:14px;"); 

what's the right way to put in FF?Is there an example or a reference?
Also can be the units a problem?

--- In svg-developers@yahoogroups.com, Bjoern Hoehrmann 
<[EMAIL PROTECTED]> wrote:
>
> * chmavrog wrote:
> >Error: Error in parsing value for property 'font-size'.  
Declaration 
> >dropped.
> >
> >What does that mean?
> 
> You have a font-size:xx or perhaps font-size="xx" somewhere and 
Firefox
> does not like the "xx". You have to either live with that or 
change the
> value to something Firefox does like.
> -- 
> Björn Höhrmann · mailto:[EMAIL PROTECTED] · http://bjoern.hoehrmann.de
> Weinh. Str. 22 · Telefon: +49(0)621/4309674 · 
http://www.bjoernsworld.de
> 68309 Mannheim · PGP Pub. KeyID: 0xA4357E78 · 
http://www.websitedev.de/
>







 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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




[svg-developers] What this error mean in FF?

2006-06-08 Thread chmavrog
Hi everyone,

I am drawing dynamically a UML Class in svg.The uml Class is a group 
of 3 rects.This class can be resized and move.However when i am 
drawing the class i get this message in the Js Console for FF

Error: Error in parsing value for property 'font-size'.  Declaration 
dropped.

What does that mean?









 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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





[svg-developers] SVG Cursors

2006-06-07 Thread chmavrog
Hi all,

SVG cursor is supported in FF.
Is there a hack to support SVG cursors in IE/ASV? 






 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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





[svg-developers] Re: Sending data to server

2006-06-07 Thread chmavrog
I want to make network requests from a standalone svg document for 
FF and IE6/ASV3.03.Is there a wrapper object somewhere for the 2 
situations?

Correct me if i am wrong.
Coding for FF i can use right away the XMLHttpRequest Object from 
the svg document.
Coding for IE i must use postURL-getURL methods for ASV,not 
XMLHttpRequest Object from the svg document.


--- In svg-developers@yahoogroups.com, "Martin Honnen" 
<[EMAIL PROTECTED]> wrote:
>
> --- In svg-developers@yahoogroups.com, "chmavrog"  
wrote:
> 
> > if i want to send the dynamically created elements inside a g 
> > element,using postURL-getURL (IE6ASV3) and XMLHtTPRequest (FF) 
does my 
> > svg main page have to be embed in an HTML page? 
> > 
> > or
> > it can be used as a standalone (e.g 
http://localhost/UMLDesigner.svg)
> > In that case can i use the above objects?
> 
> postURL/getURL are implemented by some SVG viewers (Adobe SVG 
viewer,
> I think Batik supports getURL too) so you do not need any HTML to
> embed the SVG, you can load a standalone SVG document and script in
> the SVG document has access to the functions with those viewers.
> And of course with Firefox 1.5 or Opera 9 beta script in a 
standalone
> SVG document has access to XMLHttpRequest.
>






 Yahoo! Groups Sponsor ~--> 
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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




[svg-developers] Sending data to server

2006-06-06 Thread chmavrog
Hi everyone,

if i want to send the dynamically created elements inside a g 
element,using postURL-getURL (IE6ASV3) and XMLHtTPRequest (FF) does my 
svg main page have to be embed in an HTML page? 

or
it can be used as a standalone (e.g http://localhost/UMLDesigner.svg)
In that case can i use the above objects?

Thanks,
Chris






 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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





[svg-developers] Scrollbars in SVG

2006-05-26 Thread chmavrog
Hi everyone,

I have a group element acting as a drawing canvas for drawing and 
appending svg shapes.How can i use vertical scrollbars in order to 
move down to the canvas.
Is out there a js for a scrollbar that works.

I am running the svg doc straight at the browser window in ASV 3.0 for 
IE 6.0

Thanks in advance
Chris






 Yahoo! Groups Sponsor ~--> 
Home is just a click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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




[svg-developers] Re: How to close the opened window

2006-05-23 Thread chmavrog
Jeff thanks for the reply.

I have tried window.close and is not working. self.close() on the 
other hand works.

The svg file are not embed in HTML page.I am running them directly 
to the browser.Is that a problem?

--- In svg-developers@yahoogroups.com, "Jeff Schiller" 
<[EMAIL PROTECTED]> wrote:
>
> In the second window, use the window.close() method.
> 
> --- In svg-developers@yahoogroups.com, "chmavrog"  
wrote:
> >
> > Hi my code is that:
> > 
> > 
> >  > "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-flat-20030114.dtd";>
> > http://www.w3.org/2000/svg"; width="100%" 
height="100%" 
> > xmlns:xlink="http://www.w3.org/1999/xlink";>
> > 
> > 
> > <![CDATA[
> > function showDms()
> > {
> > nw = open
> > 
('<a  rel="nofollow" href="http://localhost/svg_demos1/interface.svg">http://localhost/svg_demos1/interface.svg</a>','new','width=335,height=
> > 
115,locationbar=yes,menubar=no,scrollbars=yes,status=no,resizable=no'
> > );
> > }
> > 
> > ]]>
> > 
> >  
> >  
> >  > id="rect1">
> > 
> > 
> > The above works for IE 6 and ASV3.0.
> > 
> > The interface.svg document has a textbox and 2 buttons labeled 
OK and
> > Cancel(using Cartonet widgets).
> > How can i close the new window when pressing the OK button?
> >
>







 Yahoo! Groups Sponsor ~--> 
Home is just a click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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





[svg-developers] Re: Com between 2 svg files

2006-05-23 Thread chmavrog
When loading the 2nd window alert(window.property) shows nothing. 
The problem could be that i don't embed the svg docs in HTML docs?

--- In svg-developers@yahoogroups.com, "Jeff Schiller" 
<[EMAIL PROTECTED]> wrote:
>
> From the second window, use the window.opener property to get a 
link
> back to the opening window.  Thus a reference to the opening 
document
> from second.svg should be:
> 
> window.opener.document
> 
> Regards,
> Jeff
> 
> --- In svg-developers@yahoogroups.com, "chmavrog"  
wrote:
> >
> > Hi all,
> > 
> > From a click in an svg file,  i open another svg file in a new 
window
> > using
> > open("second.svg");
> >   My second svg file has various options. Each option 
has to 
> > append a
> > different svg element to the first svg file.
> >   My problem is, how do i make the javascript of the 
second 
> > file, append
> > the svg to the DOM of the first. I am unabale to pass the first 
file's 
> > SVGDoc
> > element to the second. Is there anyway to pass from open().Cause 
that
> > is the only way i link between the two files.
> >
>






 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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





[svg-developers] How to close the opened window

2006-05-23 Thread chmavrog
Hi my code is that:


http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-flat-20030114.dtd";>
http://www.w3.org/2000/svg"; width="100%" height="100%" 
xmlns:xlink="http://www.w3.org/1999/xlink";>


http://localhost/svg_demos1/interface.svg','new','width=335,height=
115,locationbar=yes,menubar=no,scrollbars=yes,status=no,resizable=no'
);
}

]]>

 
 



The above works for IE 6 and ASV3.0.

The interface.svg document has a textbox and 2 buttons labeled OK and
Cancel(using Cartonet widgets).
How can i close the new window when pressing the OK button?






 Yahoo! Groups Sponsor ~--> 
Home is just a click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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





[svg-developers] Com between 2 svg files

2006-05-23 Thread chmavrog
Hi all,

>From a click in an svg file,  i open another svg file in a new window
using
open("second.svg");
  My second svg file has various options. Each option has to 
append a
different svg element to the first svg file.
  My problem is, how do i make the javascript of the second 
file, append
the svg to the DOM of the first. I am unabale to pass the first file's 
SVGDoc
element to the second. Is there anyway to pass from open().Cause that
is the only way i link between the two files.
  






 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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





[svg-developers] Help with saving dynamically content

2006-05-19 Thread chmavrog
Hi again,

Here is my question.
I am coding for IE6. and ASV3.0 in Apache Web server.
I have a group element used as a canvas to draw dynamically shapes 
using javascript and SVG DOM.

Now how can i save the content inside the group element in order to 
load it again a later time for further edit.What I am trying to 
accomplish is the save and load operations for my drawings.

Thanks in advance,
Chris








 Yahoo! Groups Sponsor ~--> 
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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





[svg-developers] Re: Getting Input From User

2006-05-16 Thread chmavrog
Hi Andreas,

Can you give me a scenario of how to use it?
My aim is that:

When i press a rect, with a label "Enter Class Name", i want a new 
window to appear with the textbox in order to fill in the class name.
Closing the new window the value from the textbox should appear in 
the top of the Class rectange

Do i have to use document referrer to pass the value back to the 
main window?

Am i at the right way?
Do you have an alternative scenario?

Thnaks in advance 
Chris

--- In svg-developers@yahoogroups.com, "Andreas Neumann" 
<[EMAIL PROTECTED]> wrote:
>
> hi Chris,
> 
> as Barend said if you like prompt windows I would use the browsers 
prompt window.
> 
> An alternative would be to use svg text boxes. There is one 
available at http://
> www.carto.net/papers/svg/gui/textbox/
> 
> Due to SVG DOM limitations in FF1.5 it has limitations in Firefox 
(one can only position the 
> cursor at the beginning or end of the text) but it works.
> 
> In ASV and Opera9 it works fine. Opera 9 still has a backspace bug 
with evt.preventDefault
> (), but according to Opera this will soon be fixed.
> 
> Andreas
> 
> --- In svg-developers@yahoogroups.com, "chmavrog"  
wrote:
> >
> > Hi everyone,
> > 
> > I have written JavaScript Code using SVG elements to create the 
shape 
> > of a UML class.The shape is empty(not names for the class or 
methods 
> > and attributes).
> > 
> > I can use prompt function in order to get the properties of the 
class 
> > and then update the shape with text Elements.
> > 
> > I wonder if is somewhere out there an SVG Prompt Window in order 
to 
> > use it or
> >  can anyone give me another idea how to get the user input
> > from the user,for methods and attributes?
> > 
> > Thanks,
> >  Chris
> >
>







 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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





[svg-developers] Getting Input From User

2006-05-15 Thread chmavrog
Hi everyone,

I have written JavaScript Code using SVG elements to create the shape 
of a UML class.The shape is empty(not names for the class or methods 
and attributes).

I can use prompt function in order to get the properties of the class 
and then update the shape with text Elements.

I wonder if is somewhere out there an SVG Prompt Window in order to 
use it or
 can anyone give me another idea how to get the user input
from the user,for methods and attributes?

Thanks,
 Chris





 Yahoo! Groups Sponsor ~--> 
Everything you need is one click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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




[svg-developers] CartoNet Widgets

2006-05-12 Thread chmavrog
Hi,

Has anyone used the combobox from the cartoNet widget UI?

I keep getting this message when trying to use 
it. "this.elementsArray.length" udefined

i followed presicely the instructions in the site.
Can anyone give me an example how to declare the array that makes up 
the elements of the combobox
Thanks,
Chris





 Yahoo! Groups Sponsor ~--> 
Home is just a click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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




[svg-developers] Resize svg elements

2006-05-11 Thread chmavrog
hi everyone,

Can anyone give me links or any hints in order to accomplish a resize 
in an svg element e.g rect, g ,using the transformation matrix ?





 Yahoo! Groups Sponsor ~--> 
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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





[svg-developers] DIV-SVG

2006-05-08 Thread chmavrog
How can i embed an svg doc inside a div element?

Using embed tag or the background image of class attribute?

Thanks 
Chris






 Yahoo! Groups Sponsor ~--> 
Everything you need is one click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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





[svg-developers] Re: Javascript Libraries and SVG

2006-05-08 Thread chmavrog
Hi Phi,
Is the demo in the files section of the site?If not could you give 
me the link?


--- In svg-developers@yahoogroups.com, "Phi Tran" <[EMAIL PROTECTED]> 
wrote:
>
> Yes;
> 
> As the matter of fact JavaScript-ONLY- Can be done to the whole 
SVG DOC.
> without ASV or using Embedded tag it's supposed to work on all 
browsers.
> 
> I have posted a demo example about 2 months ago it use only 
JavaScript. The
> speed is very much compatible plugg-in and natively supported.
> 
> 
> Phi
> 
> On 5/8/06, chmavrog <[EMAIL PROTECTED]> wrote:
> >
> > Does anyone know if Javascript frameworks like 
Prototype,Dojo,Yahoo UI
> > can be used with SVG DOM in building an SVG appliocation?
> >
> >
> >
> >
> >
> >
> >
> >
> > -
> > 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
> >
> >
> >
> >
> >
> >
> >
> 
> 
> [Non-text portions of this message have been removed]
>






 Yahoo! Groups Sponsor ~--> 
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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




[svg-developers] Javascript Libraries and SVG

2006-05-08 Thread chmavrog
Does anyone know if Javascript frameworks like Prototype,Dojo,Yahoo UI 
can be used with SVG DOM in building an SVG appliocation?







 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It¿s easy and it¿s free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/1U_rlB/TM
~-> 

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

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




[svg-developers] SVG Object tag problem

2006-05-03 Thread chmavrog
Hi again,

Here is my Code for IE6 + ASV:

http://www.w3.org/TR/html4/loose.dtd";>



Draw Lines Object Tag Used







When run in IE6 in Apache 2.50 like this the svg is shown, but when 
i add attribute type="image/svg+xml" to the object tag the svg is 
not shown(in IE).

Why is that?
thanks






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

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




[svg-developers] Re: SVG Scriting Across FF and IE. FAQ

2006-05-03 Thread chmavrog
Martin,

is there a link that you can sent me in order to see this for IE+ASV

--- In svg-developers@yahoogroups.com, "Martin Honnen" 
<[EMAIL PROTECTED]> wrote:
>
> --- In svg-developers@yahoogroups.com, "chmavrog"  
wrote:
> 
> > -Inline SVG is currently supported only in FF,which supports 
XHTML, 
> > and not in IE6 + ASV. My answer(True)
> 
> Opera 8 and Opera 9 beta also support mixed namespace XML documents
> with XHTML and SVG elements.
> 
> As for IE and the Adobe SVG viewer, IE has its very own concept of
> HTML (not XHTML!) with namespaces where a plugin can implement the
> elements in a namespace and Adobe uses that to provide support for
> inline SVG inside of HTML documents with IE.
>






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

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




[svg-developers] Re: SVG Scriting Across FF and IE. FAQ

2006-05-03 Thread chmavrog
Martin,

is there a link that you can sent me in order to see this for IE+ASV

--- In svg-developers@yahoogroups.com, "Martin Honnen" 
<[EMAIL PROTECTED]> wrote:
>
> --- In svg-developers@yahoogroups.com, "chmavrog"  
wrote:
> 
> > -Inline SVG is currently supported only in FF,which supports 
XHTML, 
> > and not in IE6 + ASV. My answer(True)
> 
> Opera 8 and Opera 9 beta also support mixed namespace XML documents
> with XHTML and SVG elements.
> 
> As for IE and the Adobe SVG viewer, IE has its very own concept of
> HTML (not XHTML!) with namespaces where a plugin can implement the
> elements in a namespace and Adobe uses that to provide support for
> inline SVG inside of HTML documents with IE.
>






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

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




[svg-developers] Re: SVG Scriting Across FF and IE. FAQ

2006-05-03 Thread chmavrog
Here is another question

-Inline SVG is currently supported only in FF,which supports XHTML, 
and not in IE6 + ASV. My answer(True)


--- In svg-developers@yahoogroups.com, "chmavrog" <[EMAIL PROTECTED]> 
wrote:
>
> Hi everyone,
> 
> On my pc i have IE 6 and ASV3 and FireFox 1.5.02 (latest one).
> 
> Here are my questions.Please someone respond with Correct or False 
> after seeing my answers
> 
> -Object tag is HTML 4.01 but embed tag is not. My answer(True)
> 
> -In FF, object and embed tag can be used to show SVG documents.My 
> answer(True)
> 
> -In IE6 only embed tag can be used to show SVG documents.My answer
> (True)
> 
> -If i want to embed an svg document inside an html document and 
want to
> script from HTML2SVG and SVG2HTML i must use embed tag for IE6 + 
ASV3
> My answer(True)
> 
> -If i want to embed an svg document inside an html document and 
want to
> script from HTML2SVG and SVG2HTML i must use embed or object tag 
for FF
> My answer(false)
> 
> -Object tag does not support scripting.My answer(True)
> 
> Thanks in advace
> Chris
>







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

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





[svg-developers] SVG Scriting Across FF and IE. FAQ

2006-05-03 Thread chmavrog
Hi everyone,

On my pc i have IE 6 and ASV3 and FireFox 1.5.02 (latest one).

Here are my questions.Please someone respond with Correct or False 
after seeing my answers

-Object tag is HTML 4.01 but embed tag is not. My answer(True)

-In FF, object and embed tag can be used to show SVG documents.My 
answer(True)

-In IE6 only embed tag can be used to show SVG documents.My answer
(True)

-If i want to embed an svg document inside an html document and want to
script from HTML2SVG and SVG2HTML i must use embed tag for IE6 + ASV3
My answer(True)

-If i want to embed an svg document inside an html document and want to
script from HTML2SVG and SVG2HTML i must use embed or object tag for FF
My answer(false)

-Object tag does not support scripting.My answer(True)

Thanks in advace
Chris









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

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




[svg-developers] Open a new Document

2006-05-01 Thread chmavrog
Hi everyone,

Here is my question

If i have doc1.svg and doc2.svg under the same Folder in a web server  
can i open doc2 from doc1 in a new browser window?






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

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




[svg-developers] Re: Looking for that great drag node and edge example

2006-04-06 Thread chmavrog
Hi 
check this link 
http://www.codedread.com/dragtest3.svg

--- In svg-developers@yahoogroups.com, "run2bmi21" 
<[EMAIL PROTECTED]> wrote:
>
> 
> A few month's back in these postings, I saw reference to an 
excellent 
> javascript (I think) drag and drop example of two nodes (squares I 
> think) connected by an edge.  When you drag the node, the connecting 
> edge drags with it.
> 
> Anybody remember the URL of that example?  I searched the postings 
for 
> 30 minutes but couldn't find it.  This time I'll bookmark it 
> immediately!
> 
> Thanks,
> Doug
>






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

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





[svg-developers] SVG DEbug

2006-03-30 Thread chmavrog
Hello everyone,

Does anyone know any tool in order to perform debbuging in SVG 
documents using ECMA/Javascript?
Is microsoft Script Editor and Venkman a possible solution or i must 
get an IDE software?

Thanks
Chris,






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

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




[svg-developers] SVG Embed

2006-02-28 Thread chmavrog
Can someone answer to my questions

1. If i want to embed an svg document in an html page which tag should 
i use  or  ?

2.if i need to communicate between html to svg and svg to html,writing 
html to svg scripting and visa versa which tag i must use?

thanks in advance
Christos






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

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




[svg-developers] SVG Resize script

2006-02-23 Thread chmavrog
Hi everyone,

Can anyone supply me by giving me hints and tips in order to accomplish
resize of a group element, containing rects and text
in SVG DOM ?









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

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




[svg-developers] SVG UI Elements

2006-02-20 Thread chmavrog
Hi again,

Could anyone give me references and links about SVG UI Elements such 
as list boxes,dropdown, radio buttons etc

thanks in advance
Chris 






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

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




[svg-developers] SVG requests

2006-02-19 Thread chmavrog
Hi again,

Can I use AJAX with SVG DOM tro make requests to the web server?






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

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





[svg-developers] SVG Project. Please give me some hints!!!

2006-02-18 Thread chmavrog
Hi everyone

In order to get my Diploma i have to implement a project.The aim is to 
develop a web application that someone could use in order to design 
UML Diagrams,Entity-Relationships Diagrams and Data Flow Diagrams.The 
technologies that i must use are 

-Javascript
-XML
-PHP
-DOM
-XHTML - HTML

Since i am not an experience developer
i was wondering if a could develop the application totally in SVG.
Since with SVG i could draw any kind of shape i could gather the user 
input about the elements of the diagram (ClassName,attributes,methods 
etc) and then use EcmaScript and SVGDOM-DOM to generate the grahics 
elelements.

Then use php in order the user could save his diagrams.
Is
something like that feasible with the above technologies plus SVG??

-Are there any PHPSVG libraries out there or libraries that i could 
make drag and drop, resize? 
-Is there a template that i could use in order to start build my 
project?

Thanks in advance
Christos  





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

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





[svg-developers] Dynamically create dragable shapes

2006-02-16 Thread chmavrog
Hello everyone,

I have looked how to enable drag and drop functionality on already 
drawn shapes with svg.
If a i want to draw dynamically various shapes(rects,circles etc) 
could anybody give me a hint how to make them dragable?
Also the scripts i run into all suggest that under the shapes i want 
to drag there is a rect area that receives the events? is that the 
only way?

Thanks in advance
Chris





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

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




[svg-developers] Re: getURL - postURL

2006-02-16 Thread chmavrog
Thanks a lot for the advice


--- In svg-developers@yahoogroups.com, "Andreas Neumann" 
<[EMAIL PROTECTED]> wrote:
>
> Hi, 
>  
> I would very much suggest not to rely entirely on getURL(). The 
> various viewers out there support different loading mechanisms, 
f.e. 
> some support XMLHttpRequest() but not getURL(). In order to 
support 
> both approaches (and potentially more in the future) I suggest 
> writing a wrapper function. You can include this wrapper function 
or 
> object in a separate external js library that you can re-use for 
> different projects. 
>  
> As an example you can look at this very simple example: 
>  
> http://www.carto.net/papers/svg/geturlxmlhttprequest/ 
>  
> It works in ASV, Batik, Firefox 1.5, Opera 9 TP2 and potentially 
> other viewers supporting either method. 
>  
> -- 
>  
> to get more background on the issue you may also look at Jim Leys 
> page: 
>  
> http://jibbering.com/2002/4/httprequest.html 
> and http://jibbering.com/2002/5/dynamic-update-svg.html 
>  
> Hope this helps, 
>  
> Andreas 
>  
> --- In svg-developers@yahoogroups.com, "chmavrog"  
> wrote: 
> > 
> > Hi everyone 
> >  
> > Can anyone tell me the use or give me a reference in order to  
> > understand how to use this functions? 
> >
>







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

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





[svg-developers] getURL - postURL

2006-02-15 Thread chmavrog
Hi everyone

Can anyone tell me the use or give me a reference in order to 
understand how to use this functions?









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

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





[svg-developers] Passing data betwwen SVG docs

2006-02-08 Thread chmavrog
Hi everyone!

I am new to SVG,and at the moment i am building a GUI for an 
application that someone could use in order to constact UML diagrams.
i am using SVG,EcmaScript and php as technologies.

I have seen there are many libraries of widgets (windows,listboxes etc)

My question is this

If i open from SVG document A (using Xlink)an svg document B 
containing a listbox, is it 
possible to pass back the values that are selected in the listbox to 
document A?

thanks in advance
Chris 








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

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