[svg-developers] [ANN] Sketsa (SVG Graphics Editor) 2.2 released

2004-10-25 Thread Tonny Kohar
We just released Sketsa SVG Graphics Editor 2.2. It is available from http://www.kiyut.com/products/sketsa/index.html The new release has the following enhancement: - Group/UnGroup - z-order (Move Up/Down/Top/Bottom) - Improved Session Persistence - Small UI enhancement - Various Bug fixes If y

RE: [svg-developers] Image Creation Dynamically

2004-10-25 Thread Felix Moses
Thnx Doug, It Worked. Regards Felix -Original Message- From: Doug Schepers [mailto:[EMAIL PROTECTED] Sent: 26 October 2004 08:25 To: [EMAIL PROTECTED] Subject: RE: [svg-developers] Image Creation Dynamically Hi, Felix- Try this: var m_SVGDocument= document.embeds["svgdocument

[svg-developers] Re: SVG to DWG

2004-10-25 Thread gauri_rampal
I am interested in SVG to DWG exporter. I think William had mentioned an exporter which exports some entities from SVG to DXF12. Please let me know whether the dxf2svg.zip file has the SVG to DWF exporter. Also, let me know as to how should I run this file. I noticed an html and some javascri

RE: [svg-developers] Image Creation Dynamically

2004-10-25 Thread Doug Schepers
Hi, Felix- Try this: var m_SVGDocument= document.embeds["svgdocument"].getSVGDocument(); var newElement = m_SVGDocument.createElementNS("http://www.w3.org/2000/svg";, "image"); newElement.setAttributeNS("http://www.w3.org/1999/xlink";, "href","images/sampleimage.gif"); newElement.setAttributeNS(

[svg-developers] Graph

2004-10-25 Thread ratee111
hi, Anyone know about graph history? for example the data the bring to plot the bar graph. how it have charateristic? thanks in advance Yahoo! Groups Sponsor -

RE: [svg-developers] Image Creation Dynamically

2004-10-25 Thread Felix Moses
Sorry Folks, This is the code I am using var m_SVGDocument= document.embeds["svgdocument"].getSVGDocument(); var newElement = m_SVGDocument.createElement("image"); newElement.setAttribute("xlink:href","images/sampleimage.gif"); newElement.setAttribute("x","20"); newElement.setAttr

RE: [svg-developers] Image Creation Dynamically

2004-10-25 Thread Felix Moses
Hi, I tried to create a image element dynamically in the Javascript and the code that i am using is below var m_SVGDocument= document.embeds["svgdocument"].getSVGDocument(); var newElement = m_SVGDocument.createElement("image"); newElement.setAttribute("xlink:href","images/samplei

Re: [svg-developers] Composite paths

2004-10-25 Thread Thomas DeWeese
Chris Lilley wrote: > On Tuesday, October 26, 2004, 12:42:21 AM, kgordon wrote: > > kdc> If I have an ellipse (or elliptical arc) wherein the conjugate diameters > kdc> are not perpendicular, then > > then its not, strictly, an ellipse. Actually I can't provide a proof, but I strongly believe

Re: [svg-developers] newbie createElement question

2004-10-25 Thread Jonathan Watt
Try createElementNS('http://www.w3.org/2000/svg', 'circle') On Mon, 25 Oct 2004 23:27:20 +0100, Jeffrey Hau <[EMAIL PROTECTED]> wrote: > > Hi all, > I am just starting out SVG and try to write a script that will make a > circle appear on mouse click, when i run the following code using the > ba

Re: [svg-developers] Re: Getting text vale out of a text element.

2004-10-25 Thread Chris Lilley
On Tuesday, October 26, 2004, 1:45:40 AM, Alastair wrote: AF> Doug, AF> I didn't realize that getFirstChild() was a Adobe proprietary call Yes. They were added so that NS4.x Live Connect would work. -- Chris Lilleymailto:[EMAIL PROTECTED] Chair, W3C SVG Working Group

Re: [svg-developers] Composite paths

2004-10-25 Thread Chris Lilley
On Tuesday, October 26, 2004, 12:42:21 AM, kgordon wrote: kdc> If I have an ellipse (or elliptical arc) wherein the conjugate diameters kdc> are not perpendicular, then then its not, strictly, an ellipse. kdc> I can not represent it in center point kdc> parameterization (I don't think... which

RE: [svg-developers] Re: Getting text vale out of a text element.

2004-10-25 Thread Doug Schepers
Hi, Alastair- Yes, I spoke glibly. You're absolutely right, thanks for the clarification. The offending getters and setters I was speaking about are: getTarget() getOwnerDocument() getStyle() getFirstChild() getClientX() getClientY() getScreenX() getScreenY() getChildNodes() (there may be more,

Re: [svg-developers] size limit on image elements ???

2004-10-25 Thread Chris Lilley
On Monday, October 25, 2004, 3:50:49 PM, Jean-David wrote: JDB> Hi, JDB> can somebody tell me if there is a limit JDB> on the number or on the total cumulated size JDB> of the references images included in a svg JDB> document using the image element ??? In the spec? No. JDB> I am adding jpeg

[svg-developers] Re: Getting text vale out of a text element.

2004-10-25 Thread Alastair Fettes
Doug, I didn't realize that getFirstChild() was a Adobe proprietary call thought I should have figured that out a while ago. One cavet on your advice though: >From http://www.w3.org/TR/SVG11/ecmascript-binding.html: getBBox() getCTM() getScreenCTM() getCurrentTime() getSVGDocument() getTotalLe

[svg-developers] FW: The CERT Advisory mailing list is an announcement only list

2004-10-25 Thread Doug Schepers
To the Moderators: I'm getting this message every time I send a message to [EMAIL PROTECTED] I've sent them a message asking them to correct the situation, but they've been unresponsive. Can you please unsubscribe them? Thanks- -Doug -Original Message- From: [EMAIL PROTECTED] [mailt

RE: [svg-developers] Audio on SVG

2004-10-25 Thread Doug Schepers
Hi, Tony- Probably the best compromise would be to include both the proprietary and the standard (but not-quite-here) versions, and use a switch to select between the 2: Where Are You? http:

RE: [svg-developers] Composite paths

2004-10-25 Thread kgordon
Hello, >Hi wetophelia, >wetophelia wrote: >> I am having an issue, and this may just be a limitation of the >> specification, but perhaps someone will have an idea I have not >> thought of. >> >> I am under the impression that some elliptical arcs (inclined arcs) >> can not be drawn withou

[svg-developers] newbie createElement question

2004-10-25 Thread Jeffrey Hau
Hi all, I am just starting out SVG and try to write a script that will make a circle appear on mouse click, when i run the following code using the batic svg viewr, the circle does not appear on click but i can see it has been added to the DOM tree. Can anyone point out what's wrong with the f

RE: [svg-developers] Getting text vale out of a text element.

2004-10-25 Thread Doug Schepers
Hi, Dale- You really shouldn't use getters and setters (node.get*())... They are proprietary Adobe extensions. Instead, use var textData = textElement.firstChild.nodeValue; Regards- Doug Schepers doug . schepers @ vectoreal.com www.vectoreal.com "Move into the future..." Dale Ellis wrote:

[svg-developers] Re: parent node

2004-10-25 Thread Heiko Niemann
Hi, var element = document.getElementById('child'); var parent = element.parentNode; Regards- -Heiko --- In [EMAIL PROTECTED], "nickka53" <[EMAIL PROTECTED]> wrote: > > Can I query for an element's parent node? I tried using the > svgDocument and selectSingleNode (using JavaScript) and XPa

[svg-developers] parent node

2004-10-25 Thread nickka53
Can I query for an element's parent node? I tried using the svgDocument and selectSingleNode (using JavaScript) and XPath and it didn't work for me. svgDoc.setProperty("SelectionLanguage", "XPath"); var parentNode = svgDoc.selectSingleNode("parent::cd[attribute::id=" + objectId + "]"); -

Re: [svg-developers] Composite paths

2004-10-25 Thread Holger Will
wetophelia wrote: > Is it possible to composite two paths somehow? or achieve a single > closed shape using more than 1 path? yes you can easily composite two pathes by just writing both pathes in an d attribute, like this: see the examples for fill-rule in the spec http://www.w3.org/TR/

Re: [svg-developers] Re: full svg website

2004-10-25 Thread Holger Will
hi jean yes , thanks. i ve realized that error right after the last mail and corrected it so it works with the dot. i think ,i at least once, encoutered the problem of dynamic svgs not ending with .svg . but dont remember under which circumstances you will need the .svg i believe its got some

RE: [svg-developers] Form in SVG

2004-10-25 Thread kgordon
Ana Rubia, Unfortunately there is not support for editable text fields in 1.1 If you want to allow people to enter data into your svg you must 'fake' a text field using javascript and capturing keystrokes. Regards, Keir Gordon -Original Message- From: ana_rubia_zr [mailto:[EMAIL PRO

Re: [svg-developers] Re: full svg website

2004-10-25 Thread Holger Will
hi barend now there might be two causes, 1) i dont have the SP2 installed, and i heard alot about problems with it concerning SVG. 2) i use ASV 3.01, Build 81, you might try an update of your ASV. i will hopefully test it on an sp2 infected machine,soon. thank you very much again. holger Bare

[svg-developers] Form in SVG

2004-10-25 Thread ana_rubia_zr
Hello! Anybody has a example of use a form in the SVG? How can I transfer the informations of SVG to another form or place? Can I save this in a Database? Thanks. Ana Rubia Yahoo! Groups Sponsor ~--> $9.95 domain names from Yahoo!. Register any

RE: [svg-developers] Re: full svg website

2004-10-25 Thread jean francoeur
Hi guys This works for me: http://www.treebuilder.de/default.asp?type=.svg this doesn't: http://www.treebuilder.de/default.asp?type=svg -jean -Original Message- From: Holger Will [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 12:47 PM To: [EMAIL PROTECTED] Subject:

RE: [svg-developers] importing svg files

2004-10-25 Thread Ross Allard
Thanks Thomas, my first attempt at including SVG support was to add a JSVGCanvas to my drawing Component for each svg object. However, coordinating it with the surrounding (and above) native drawing proved difficult, so I gave up and treated each as a simple bitmap when painting (although I ke

Re: [svg-developers] Composite paths

2004-10-25 Thread Thomas DeWeese
Hi wetophelia, wetophelia wrote: > I am having an issue, and this may just be a limitation of the > specification, but perhaps someone will have an idea I have not > thought of. > > I am under the impression that some elliptical arcs (inclined arcs) > can not be drawn without the use of a tr

Re: [svg-developers] importing svg files

2004-10-25 Thread Thomas DeWeese
rossallard wrote: > I have an Swing drawing application that I've added support for > importing svg files. Ultimately, the svg images are converted to > BufferedImage for display in the window. How do you get the BufferedImages? You might be able to simply place the images as child JSV

[svg-developers] Composite paths

2004-10-25 Thread wetophelia
I am having an issue, and this may just be a limitation of the specification, but perhaps someone will have an idea I have not thought of. I am under the impression that some elliptical arcs (inclined arcs) can not be drawn without the use of a transformation applied to the path. I think th

RE: [svg-developers] Re: full svg website

2004-10-25 Thread Barend Köbben
Hello Holger, I am sorry I cannot be of much help as I am not that knowledgable on content headers etc., I just will give you as many facts as possible: - on my home box (winXP professional SP2 + IE6.0.2900.2180.xp2_sp2_rtm.040803-2158 + ASV3.0 build76, don't you just love these Microsoft vers

[svg-developers] Re: How do anchors work in svg?

2004-10-25 Thread biotoxin13
Thanks andré, I understand your suggestion and unfortunately it is not what I am looking for. By setting the viewbox, all other content outside the BBox of the element (even if the width and height of the whole document stays the same) is lost or 'out of view'. I need to give users the ab

[svg-developers] importing svg files

2004-10-25 Thread rossallard
I have an Swing drawing application that I've added support for importing svg files. Ultimately, the svg images are converted to BufferedImage for display in the window. However, when saving the entire drawing as an svg file, I'd like to save the imported svg files included "as is". Curren

[svg-developers] [Fwd: The CERT Advisory mailing list is an announcement only list]

2004-10-25 Thread "André M. Winter"
hi mailing list maintainers, could you please remove the *.cert.org mail addess form the index? it sends a message on any mail going to the list... thx andré -- ___ andre m. winter,

Re: [svg-developers] How do anchors work in svg?

2004-10-25 Thread "André M. Winter"
hi, the svg spec does mention such a mechanism (file.svg#objID but ASV3 doesn't handle it. the way you may do it for now is something like: //svgdoc = outermost svg elem function jumpto(id){ var bb = document.getElementById(id).getBBox(); svgdoc.setAttributeNS(null,'viewBox',bb.x+' '+bb.y

[svg-developers] How do anchors work in svg?

2004-10-25 Thread biotoxin13
I am trying to have a situation where one element causes the brwoser to jump down to another element, similar to how html anchors work. Below is an example where I am embedding svg and trying to jump between elements within the svg document. Any suggestions? Thanks. svg file =

RE: [svg-developers] Debugging javascript in Adobe SVG viewer

2004-10-25 Thread Chris Farmer
Ah, perfect! I had the JIT debug setting turned on from inside the Visual Studio options dialog, but apparently that wasn't sufficient. Thanks for your help. -Original Message- From: Brad Taylor [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 9:11 AM To: [EMAIL PRO

Re: [svg-developers] Re: full svg website

2004-10-25 Thread Holger Will
thanks barend and your right im completly confused now. so i use a winXP prof SP1 as my devel box. testing regularly with the following browsers: IE6, firefox 1.0 , Opera , Amaya , Moz and MozSVG. and viewers: ASV3.01, ASV6pre (mostly ASV6 , lately) , Batik1.5.1 i also got a Suse 9.1 box with

RE: [svg-developers] Debugging javascript in Adobe SVG viewer

2004-10-25 Thread Brad Taylor
I asked a similar question earlier, and Paul Welker responeded as follows. I tried it and it worked for me. hth brad taylor From: "welkerpaul" <

[svg-developers] Warp Text functions in SVG?

2004-10-25 Thread Sherm
Hi all, Been lurking for awhile, learning a great deal about SVG from this group. Now, it's time to post my first question... I'm creating a "build a uniform" website in HTML/jscript/SVG for an athletic uniform manufacturer. The lettering for their uniforms can be ordered in styles such as a

RE: [svg-developers] Re: full svg website

2004-10-25 Thread Barend Köbben
I'm sorry to make it (maybe) even less clear what's wrong, but now I tested on another windoze box (this time winXP professional SP1 + IE6.0.2800.1106.xp2sp2.030422-1633 + ASV3.01 build81). Result is that using the HTML site, all svg's loaded ok, except again the lensflare (svgz) link (http://

[svg-developers] Debugging javascript in Adobe SVG viewer

2004-10-25 Thread Chris Farmer
Hi. I've got some SVG documents that interact with a containing html page. They contain a little javascript for event handlers, but the javascript basically just delegates to the html for any real work. Now I want to add some more substantial code to the SVG docs to manage a custom context menu

[svg-developers] import svg in svg

2004-10-25 Thread marcorosella
Hi! My problem is: i want to import an svg with animations(example: one.svg) in another svg file (two.svg):I use tag. When I open two.svg, the animations of one.svg doesn't start! Why? m_ Yahoo! Groups Sponsor ~--> Make a clean sweep of pop-u

Re: [svg-developers] size limit on image elements ???

2004-10-25 Thread Jean-David Benamou
andré m. winter wrote: >salut jean-david, > >send us a link... basically i did never come accross such a limitation >althoug there may be some limiting factors depending on number (but you >speak about a few...) and image size. > >andré > > > OK I have actually found another potential bug I w

Re: [svg-developers] size limit on image elements ???

2004-10-25 Thread "andré m. winter"
salut jean-david, send us a link... basically i did never come accross such a limitation althoug there may be some limiting factors depending on number (but you speak about a few...) and image size. andré -- ___ andre m. winter,

[svg-developers] size limit on image elements ???

2004-10-25 Thread Jean-David Benamou
Hi, can somebody tell me if there is a limit on the number or on the total cumulated size of the references images included in a svg document using the image element ??? I am adding jpeg images dynamically to the svg doc and after a few of these, images are only partly rendered or not rendered

Re: [svg-developers] fePointLight & animation along path ?

2004-10-25 Thread "andré m. winter"
hi holger, indeed that is a good workaround, thanks! it is not replacing motion along any arbitrary path, but speaking geometry most function graphs could be mapped. andré Holger Will wrote: > hi andré > > ive just taken a look at your sun animation again. its really cool ! > and ive just

Re: [svg-developers] fePointLight & animation along path ?

2004-10-25 Thread Holger Will
hi andré ive just taken a look at your sun animation again. its really cool ! and ive just had an idea , you might want to try to approximate the path using keySplines: just a thought holger andré m. winter wrote: > hi, > > i was wondering if it is possible to apply an anim

Re: [other] Re: [svg-developers] Animated Itinerary of Holidays in Japan, SVG.Open Fotos

2004-10-25 Thread David Putman
Hi Guys, The long-awaited and updated version of SViGio is now available from my website http://www.davidputman.com/svigio It's still free and is looking more like a fully-featured application nowadays :) enjoy dp Yahoo! Groups Sponsor ~--> $

Re: [svg-developers] Animated Itinerary of Holidays in Japan, SVG.Open Fotos

2004-10-25 Thread "andré m. winter"
sorry for the german posting, those forced reply-to mailing lists... ;-( just gave him some perceptive hints... andré andré m. winter schrieb: > hallo andi > > danke für die bilder und die kartenanimation ist wirklich toll, hätte > nicht gedacht, dass diese karte je wieder mal ausgepackt w

Re: [svg-developers] Animated Itinerary of Holidays in Japan, SVG.Open Fotos

2004-10-25 Thread "andré m. winter"
hallo andi danke für die bilder und die kartenanimation ist wirklich toll, hätte nicht gedacht, dass diese karte je wieder mal ausgepackt werden kann... warum setzt du eigentlich die viewbox und animiert sie nicht? dann hätte man veilleicht eine chance zu verstehen wo man grad hinspringt. in e

Re: [svg-developers] background fill for patterns?

2004-10-25 Thread Philippe Lhoste
no1_spod wrote: > Is it possible to produce a background fill for a group element being > filled with a pattern? > > All I have been able to achieve is the pattern itself being filled > with a colour, but not the remaining whitespace surrounding it? > > I'm sure it must be possible, just don't