[svg-developers] Re: How to import .js files into SVG

2006-03-03 Thread Jan-Klaas Kollhof
> Is it possible to load .js files via js-code? With this I mean: is it possible to create packages like in Java and use them with something like import io.gis.something? If not, is there an alternative for JavaScript? Because if you create a whole application (OO) with a lot of .js-files, it looks

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

2004-10-24 Thread Jan-Klaas Kollhof
Nice ! Whish I ha the time to do something like that ;) Jan Yahoo! Groups Sponsor ~--> Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar. Now with Pop-Up Blocker. Get it for free! http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/1U_rlB/T

[svg-developers] Re: Form in SVG

2004-10-26 Thread Jan-Klaas Kollhof
Hi, > How can I transfer the > informations of SVG to another form or place? Can I save this in a > Database? It is quite easy to transfer data to the server. Use getURL or postURL. There are various protocols available you can use to talk to the server ranging from posting form data to doin

[svg-developers] Re: [ANN] MOBIFORM XAML Editor and XAML Clone Released for XP

2004-11-01 Thread Jan-Klaas Kollhof
Hello Philippe, It's time for us SVG people to wake up! The future is XAML! Jan PS: 130 people on http://groups.yahoo.com/group/XAML/ 25 on http://groups.yahoo.com/group/xaml-talk/ 45 on http://groups.yahoo.com/group/mobiform_support/ 4972 on http://groups.yahoo.com/group/svg-developers/

[svg-developers] Re: SVG 1.2 feedback: SVGTimer Inteface - does this add anything?

2004-11-02 Thread Jan-Klaas Kollhof
It is a "replacement" for setTimeout and setInterval. Jan PS: setTimeout, setInterval, ... where never in the specs so they defined interfaces that can handle the functionality. e.g. getURL/postURL now in the specs as URLRequest Yahoo! Groups Sponsor --

[svg-developers] interesting rendering effects

2004-11-02 Thread Jan-Klaas Kollhof
Hi, I was playing around a bit and had the following results with one of my SVGs: http://jan.kollhof.net/projects/svg/playground/moire.jpg here the svg: http://jan.kollhof.net/projects/svg/playground/moire.svg It should actually be all black. Well, due to the antializing it is not. If you turn

[svg-developers] Re: SVG map example: What countries have you traveled to?

2004-11-18 Thread Jan-Klaas Kollhof
> No indeed, what projection do you want (what was your original one in)? I have no clue how they are called. :( Long/Lat are used in such a way that I could just place an element at position x,y in the SVG using the long/lat coordinates without recalculation. Does that make sence, sorry I am no

[svg-developers] Re: SVG map example: What countries have you traveled to?

2004-11-18 Thread Jan-Klaas Kollhof
Hi, > http://mathworld.wolfram.com/CylindricalEquidistantProjection.html Interesting. I guess I was thinking of a "Equirectangular Projection" according to that page :) but then again, does it realy matter what proj. is used. It should look attractive. the rest can be calculated, not? Jan

[svg-developers] Re: SVG map example: What countries have you traveled to?

2004-11-18 Thread Jan-Klaas Kollhof
Way cool, > So, Jan-Klaas, you may have your file below 100KB without even using > another map... > Do you want I send you the optimized final map? Please do, I will update the UI and add some zoom and pan and things. Jan Yahoo! Groups Sponsor --

[svg-developers] Re: VB and ASV3 classes

2005-01-04 Thread Jan-Klaas Kollhof
> Did anybody outhere use ASV3 with VB alrerady ?? I have, it is fairly simple. You can even interact with the script inside the SVG from VB... place the SVG ActiveX control on your form. it has a src property you can set, a window property(getWindow()) to get access to the window object and a

[svg-developers] Re: real time data publishing using servlets

2005-01-10 Thread Jan-Klaas Kollhof
Hi, I doubt very much that you can do a hundred requests a second unsing getURL or postURL and display the changes. But then again you do not need to update changes 100 times a second, a user would not be able to see changes in that short of a time anyways. So, what you can do is poll the data

[svg-developers] Re: real time data publishing using servlets

2005-01-11 Thread Jan-Klaas Kollhof
Hi, > You could probably feed that with a streaming feed over a socket, > but to the best of my knowledge there is no way to do this in > JavaScript. In Batik it works just fine. I have partially impl. the SVG1.2 Sockets using JavaScript in Batik. see http://jan.kollhof.net/projects/svg/playg

[svg-developers] Re: Can svg dynamiclly response to an event or a message sent from server?

2005-01-14 Thread Jan-Klaas Kollhof
Yes, if you can somehow get that event or message into the SVG document or the script within that SVG ;) > I don't want to use svg to query the server continuously,i just want > the server can send a message or give an event to svg,and svg can > response to it and change the location of the ca

[svg-developers] Re: Adobe please distribute SVG Viewer ...MASSIVELY !!!

2005-02-12 Thread Jan-Klaas Kollhof
> Who on this developers list *cares* about multipage and print support for SVG? I do, and I doubt I have to tell you what industry I work in ;) Jan - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my member

[svg-developers] Re: SVG to PDF ? Does Adobe allow this ?

2005-02-15 Thread Jan-Klaas Kollhof
There are a couple ways to get a PDF. One is you embed an SVG inside PDF. See: http://jan.kollhof.net/projects/svg/svgpdf/index.xhtml or a pearlscript that does the same on: http://www.kevlindev.com/ The other solution is to actually create PDF fromt the SVG. Some of the XSL/FOP tools do a prett

[svg-developers] Re: how to set a link to a svg element by JavaScript

2005-02-17 Thread Jan-Klaas Kollhof
> svgDoc.getElementById("varLink").firstChild.nodeValue=" href='http://www.yahoo.com'> Here is a link"; try: document.getElementById("varLink").setAttributeNS("http://www.w3.org/1999/xlink";, "href", "http://www.svg.org";); - To unsubscribe send a message to: [EMAIL PROTECTED

[svg-developers] Re: Using Adobe's SVG Viewer for batch rendering?

2005-02-22 Thread Jan-Klaas Kollhof
sform it to a png using some png lib. 8. destroy the ASV object 9. repeat 1-8 for each file That's it. I played around with it once and I think it worked fine. Jan-Klaas Kollhof - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-de

[svg-developers] Re: Variables given to PHP

2005-02-23 Thread Jan-Klaas Kollhof
In your link use & instead of just &. e.g xlink:href="./test.py?v1=1&v2=2" JKK - 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,

[svg-developers] Re: ready status

2005-02-28 Thread Jan-Klaas Kollhof
Hi, I am not sure if this works but give it a try. in a function set the attribute and then do and do a setTimeout("finishedRendering()", 0). I think, but am not too sure, the finishedRendering() will not be called before ASV has finished rendering(even though timout has already run out of time

[svg-developers] Re: ready status

2005-03-01 Thread Jan-Klaas Kollhof
Sorry, it does not work, I just tried it. > in a function set the attribute and then do and do a > setTimeout("finishedRendering()", 0). Jan - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---

[svg-developers] Re: Executing Java/C# server method from svg

2005-03-01 Thread Jan-Klaas Kollhof
You will need to use getURL/postURL to make requests to the server. The server(a cgi script/jsp/asp/??? run by the server) will have to then querry the database, package up the results and return it as a result of the request. The returned data will have to be interpreted by script in your SVG fi

[svg-developers] Re: To create text box in SVG

2005-03-03 Thread Jan-Klaas Kollhof
> Is there a way by which you can create a text box in SVG ? Yes, with some scripting you can do so. here an example of a muliline textbox: http://jan.kollhof.net/projects/svg/examples/gui/textbox.svg There are toolkits out there that have a whole set of widgets, do chekc them out. e.g. SPARK:

[svg-developers] Re: Fwd: HK police using brain voice read-write machine murder HK people.

2005-03-13 Thread Jan-Klaas Kollhof
lol 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

[svg-developers] Re: Object orienting SVG

2005-03-31 Thread Jan-Klaas Kollhof
This is not a detailed answer but have look at: http://jan.kollhof.net/projects/svg/examples/gui/textbox.svg for a textbox component written in JS and SVG. Some more stuff that usually has nice object oriented JS code you can find in the other examples: http://jan.kollhof.net/projects/svg/exampl

[svg-developers] Re: Insert text from clipboard into svg ?

2005-05-06 Thread Jan-Klaas Kollhof
> 1) is there a way to insert text from the clipboard into SVG. > If it is running for ASV3 / IE its OK for me. You can use IE's clipboard from JS just like any other IE specific JS things. from within HTML you have to call window.clipboardData.getData("Text"); from within SVG that should be to

[svg-developers] Re: Protecting svg source code

2005-06-19 Thread Jan-Klaas Kollhof
> I want to prevent others from viewing my svg source code. Nope, no way to do that unless with a custom viewer. Even if you encrypt the content and decrypt it using script, the user will always be able to get to the source/DOM ... with a little effort. And if that means just turning on a debugge

[svg-developers] Faces of SVG

2005-08-24 Thread Jan-Klaas Kollhof
Hello all, here ist the first series of photos from SVGOpen 2005. It is a bunch of portrait shots. Unfortunatly I did not get a pic of everyone. If you would like to have a full resolution copy, let me know. http://jan.kollhof.net/photography/2005-08/facesofsvg/ There are going to be a couple

[svg-developers] Sleepless In Enschede, Faces of SVG, 100 Hours, ...

2005-08-24 Thread Jan-Klaas Kollhof
OK, updates on the SVGOpen 2005 pictures I took. The old links will not work anymore. Everything can be found in my blog now: http://jan.kollhof.net/blog/chapter4/2005/08/24/0 If anyone likes full res. copies, let me know. Jan Yahoo! Groups Sponsor ---