[svg-developers] Sketsa SVG Graphics Editor 3.3 released

2006-02-22 Thread Tonny Kohar
Kiyut just released Sketsa SVG Graphics Editor 3.3, a cross platform vector drawing application based on SVG. It features various tools for optimizing content creation, giving designers unsurpassed support for creativity. These tools include property palette, source editor, resources editor, SVG sp

Re: [svg-developers] Re: Shape Resize

2006-02-22 Thread Diego Gibellino
Thank you Robert, I thought it was simpler to implement such behavior. I suppose that animation may be not appropriate in this case. (Am I right?) Regards, Diego 2006/2/17, Robert Russell <[EMAIL PROTECTED]>: > > Instead of doing while(currentX<500), you have to make your code do a > callback us

[svg-developers] New to SVG, questions

2006-02-22 Thread Dave
Just started playing with SVG at work. I'm trying to determine what kinds of problems it might be able to solve for us. First thing, what do people most commonly use for SVG development? I've started using the adobe plugin for IE but I've also played with firefox 1.5. So far it seems that the

[svg-developers] Re: Sketsa SVG Graphics Editor 3.3 released

2006-02-22 Thread Dave
> Check out the web start at > http://www.kiyut.com/products/sketsa/webstart/sketsa.jnlp Running this web start I'm told that their digital signature is invalid... - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "e

[svg-developers] Re: New to SVG, questions

2006-02-22 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, "Dave" <[EMAIL PROTECTED]> wrote: > can you > use the adobe pluging in firefox even though native support for SVG is > already there? You can try (disable native SVG, copy the plugin files in the plugin folder) but should take note that Adobe officially ship

[svg-developers] Thoughts on optimizing ASV rendering SVG with 5,000 elements

2006-02-22 Thread run2bmi21
Hi, Does anyone have any hints on improving response times from ASV when SVG file has about 5,000 elements? The elements are simple lines (4,000) and circles (1,000). For every circle, there's a word or two of associated text, positioned just below the circle. Just wondering whether something a

[svg-developers] Re: New to SVG, questions

2006-02-22 Thread Dave
Thanks Martin... > - you can't script the plugin from the outside (e.g. with script in a > HTML document embedding an SVG document) and you can't script the HTML > document embedding the plugin at all from the SVG document That's kindof a killer for me. I want the freedom to use SVG for it's str

[svg-developers] Inter document scripting svg-html

2006-02-22 Thread Jeroen Vanattenhoven
I need a way which works good on IE+ASV, Firefox and Netscape. On the svg wiki I found http://jwatt.org/svg/demos/scripting-across-object.html which according to the document (http://wiki.svg.org/Inter-Document_Communication#Examples) should work on FF and IE. But when I try this, it only works

[svg-developers] Re: New to SVG, questions

2006-02-22 Thread Dave
> On a more technical note. I've had trouble finding out how big the > viewable area is for an SVG document. If I'm scripting an SVG > document and I want to put a new shape on the screen but I want to > make sure it's viewable how can I know how much space I have to work with? I'm sort of answ

[svg-developers] Re: New to SVG, questions

2006-02-22 Thread Robert Russell
No, but Firefox SVG support will improve in time. The beta for Opera 9 looks really good right now too. --- In svg-developers@yahoogroups.com, "Dave" <[EMAIL PROTECTED]> wrote: > > Thanks Martin... > > > - you can't script the plugin from the outside (e.g. with script in a > > HTML document embed

[svg-developers] Re: New to SVG, questions

2006-02-22 Thread Robert Russell
That sounds like what you want, yeah. --- In svg-developers@yahoogroups.com, "Dave" <[EMAIL PROTECTED]> wrote: > > > > On a more technical note. I've had trouble finding out how big the > > viewable area is for an SVG document. If I'm scripting an SVG > > document and I want to put a new shape

Re: [svg-developers] Inter document scripting svg-html

2006-02-22 Thread Holger Will
Jeroen Vanattenhoven schrieb: > I need a way which works good on IE+ASV, Firefox and Netscape. On the > svg wiki I found http://jwatt.org/svg/demos/scripting-across-object.html > which according to the document > (http://wiki.svg.org/Inter-Document_Communication#Examples) >

[svg-developers] Re: New to SVG, questions

2006-02-22 Thread Dave
Thanks for the confirmation --- In svg-developers@yahoogroups.com, "Robert Russell" <[EMAIL PROTECTED]> wrote: > > That sounds like what you want, yeah. > > --- In svg-developers@yahoogroups.com, "Dave" <051103-yahoogroups@> > wrote: > > > > > > > On a more technical note. I've had trouble find

Re: [svg-developers] Thoughts on optimizing ASV rendering SVG with 5,000 elements

2006-02-22 Thread Holger Will
run2bmi21 schrieb: > Hi, > > Does anyone have any hints on improving response times from ASV when > SVG file has about 5,000 elements? The elements are simple lines > (4,000) and circles (1,000). For every circle, there's a word or two > of associated text, positioned just below the circle. > >

Re: [svg-developers] Thoughts on optimizing ASV rendering SVG with 5,000 elements

2006-02-22 Thread Sylvain Rouillard
Le Mercredi 22 Février 2006 17:25, run2bmi21 a écrit : > Hi, > > Does anyone have any hints on improving response times from ASV when > SVG file has about 5,000 elements? The elements are simple lines > (4,000) and circles (1,000). For every circle, there's a word or two > of associated text, pos

Re: [svg-developers] Re: New to SVG, questions

2006-02-22 Thread Holger Will
Dave schrieb: > > > On a more technical note. I've had trouble finding out how big the > > viewable area is for an SVG document. If I'm scripting an SVG > > document and I want to put a new shape on the screen but I want to > > make sure it's viewable how can I know how much space I have to work

[svg-developers] Re: Inter document scripting svg-html

2006-02-22 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Jeroen Vanattenhoven <[EMAIL PROTECTED]> wrote: > > I need a way which works good on IE+ASV, Firefox and Netscape. On the > svg wiki I found http://jwatt.org/svg/demos/scripting-across-object.html > which according to the document > (http://wiki.svg.org/Int

Re: [svg-developers] Thoughts on optimizing ASV rendering SVG with 5,000 elements

2006-02-22 Thread thomas . deweese
Hi, A single path with a thousand line segments (M x11,y11 L x12,y12 M x21, y21, L x22, y22, ...) will display/update in a small fraction of the time that a thousand line elements will (they will also take much less memory). Another trick is to replace the circle elements with a single pa

Re: [svg-developers] New to SVG, questions

2006-02-22 Thread Holger Will
Dave schrieb: > Just started playing with SVG at work. I'm trying to determine what > kinds of problems it might be able to solve for us. > > First thing, what do people most commonly use for SVG development? > I've started using the adobe plugin for IE but I've also played with > firefox 1.5. >

[svg-developers] hello

2006-02-22 Thread fujisawa . jun
The message contains Unicode characters and has been sent as a binary attachment. [Non-text portions of this message have been removed] - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" Yaho

[svg-developers] Re: New to SVG, questions

2006-02-22 Thread Dave
> Hi Dave > > you might also want to check window.innerWidth and window.innerHeight, > but im not sure its implemented in ASV though. > and in Firefox doing document.documentElement.width ( or .height) is > also an option. > > cheers > Holger Thanks, I checked and window.innerWidth & window.in

Re: [svg-developers] Re: New to SVG, questions

2006-02-22 Thread Holger Will
Dave schrieb: > > Hi Dave > > > > you might also want to check window.innerWidth and window.innerHeight, > > but im not sure its implemented in ASV though. > > and in Firefox doing document.documentElement.width ( or .height) is > > also an option. > > > > cheers > > Holger > > Thanks, I checked a

[svg-developers] Re: New to SVG, questions

2006-02-22 Thread Dave
Thanks for the pointers. I think inkscape is going to be very useful to me. Looks like a lot of good SVG info on both the treebuilder and the coderead site. > try to use only features that work in > all implementations, if you > possibly can. Well, I was using Mayura and right from the start,

[svg-developers] Re: New to SVG, questions

2006-02-22 Thread Dave
--- In svg-developers@yahoogroups.com, Holger Will <[EMAIL PROTECTED]> wrote: > > Dave schrieb: > > > > Hi Dave > > > > > > you might also want to check window.innerWidth and window.innerHeight, > > > but im not sure its implemented in ASV though. > > > and in Firefox doing document.documentElemen

[svg-developers] Viewing SVG document over SSL

2006-02-22 Thread Buttrey, Todd
I asked this question about 6 weeks ago and got no responses. Here is my second attempt. Has anyone ever tried viewing a jpg image through the SVG viewer over https? I have an app that is trying to do this but can't. When the web server is running just http, everything works as it should

[svg-developers] Point along bezier at given distance

2006-02-22 Thread justin.wikinator
This is more of a mathematical question than a question about SVG, but I need this information in my SVG development: Given a bezier (and the length of that bezier if necessary), cubic and/or quadradic, how would I go about finding the cartesian co-ordinate of the point that is a given distance al

Re: [svg-developers] Point along bezier at given distance

2006-02-22 Thread Holger Will
justin.wikinator schrieb: > This is more of a mathematical question than a question about SVG, but > I need this information in my SVG development: > > Given a bezier (and the length of that bezier if necessary), cubic > and/or quadradic, how would I go about finding the cartesian > co-ordinate of

Re: [svg-developers] Re: New to SVG, questions

2006-02-22 Thread Holger Will
Dave schrieb: > Thanks for the pointers. I think inkscape is going to be very useful > to me. yeah , inkscape rocks ! by the way, have you checked http://www.openclipart.org yet ? its a great resource of public domain svg clipart. > > So, I had written off the firefox browser for this initial

Re: [svg-developers] Thoughts on optimizing ASV rendering SVG with 5,000 elements

2006-02-22 Thread Sean
I have a similar problem. I've developed an SVG front end for editing databases, IE only at this point. Drawback is that if the db is rather large, performance falls off fast. For instance, my svg when fully loaded is about 3.5 MB, which I don't think of as all that large. I make svg maps that

[svg-developers] Re: New to SVG, questions

2006-02-22 Thread Dave
> cool ;-) > if you want to support firefox, dont miss http://jwatt.org/svg/authoring/ It was easier than I thought to get my minimally functioning SVG example working in firefox. Just a few changes and it now works in both Firefox and IE(Adobe). Thanks - To unsubscribe send a message

RE: [svg-developers] Thoughts on optimizing ASV rendering SVG with 5,000 elements

2006-02-22 Thread Peter Kalev
I have a similar problem too... :) We use ASV3/IE6 . A very large map loads very fast, but the moment you add text it "kills" my computer... :( Just to throw a curve ball, my co-workers computer (same configuration as mine) sees no difference... Go figure. Peter Kalev Senior Developer, SWF, L

[svg-developers] Re: Sketsa SVG Graphics Editor 3.3 released

2006-02-22 Thread Tonny Kohar
Hi On Wed, 2006-02-22 at 20:26 +, svg-developers@yahoogroups.com wrote: > Check out the web start at > http://www.kiyut.com/products/sketsa/webstart/sketsa.jnlp > Running this web start I'm told that their digital signature is invalid... This is not an invalid signature, but rather a self s

RE: [svg-developers] Inter document scripting svg-html

2006-02-22 Thread Doug Schepers
Hi- Holger Will wrote: | | you are right, you can not script acreos object with ASV at all. | thats why embed is the only way for doing inter-document | communication that works in all browsers. I think works across browsers as well. Regards- Doug [EMAIL PROTECTED] www.vectoreal.com ...for

Re: [svg-developers] Inter document scripting svg-html

2006-02-22 Thread Holger Will
Doug Schepers schrieb: > Hi- > > Holger Will wrote: > | > | you are right, you can not script acreos object with ASV at all. > | thats why embed is the only way for doing inter-document > | communication that works in all browsers. > > I think works across browsers as well. Good Morning Doug y

Re: [svg-developers] Re: New to SVG, questions

2006-02-22 Thread Holger Will
Dave schrieb: > > > cool ;-) > > if you want to support firefox, dont miss > http://jwatt.org/svg/authoring/ > > It was easier than I thought to get my minimally functioning SVG > example working in firefox. Just a few changes and it now works in > both Firefox and IE(Adobe). > > Thanks hey , g