Re: [svg-developers] call JS function from html ?

2005-02-28 Thread Jérôme Tricand de la Goutte
Hi You must define a empty variable myVar in your HTML doc. Then you define your function myFunction(args) in your SVG. then use parent.myVar=myFunction. Then, you will be able to use myFunction in HTML, calling myVar(args) Hope it helps Jérôme Tricand de la Goutte Société Logatique 50 rue

[svg-developers] Re: call JS function from html ?

2005-02-28 Thread jololivier
Hi, you have to connect svg funtion and javascript function in the init event of your SVG tag. For example, you want to call the svg function svgToto from javascript : javascript (in the main page) : function toto (param1, param2) { window.htmlToto(param1, param2); } Svg (in the

[svg-developers] How to create somethling like a table for text

2005-02-28 Thread dfi10x
Hi, I want to make text thats formated like a table. There should be the same spaces between the words in every row. As an example http://www.lookuptables.com/ Can someone tell me how to do so? Thanks, DFI10X - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit

[svg-developers] ready status

2005-02-28 Thread kanmac1
Folks, any idea how to be 100% sure ASV has finished processing of SVG? E.g. I set a transform attribute to the value rotate(45). It is a very big g element, so the processing takes a few seconds. Once I get back the control I understand ASV has finished, but I can see, that the processor is

[svg-developers] Directory Thumbnail Viewer for SVG files?

2005-02-28 Thread Marjorie Roswell
Is there a tool in windows that will allow rapid viewing of SVG files in folders? The Internal Explorer to Windows automatically lets you view thumbnails of JPGs, GIFs, etc. but not SVG files. I don't think Google's new picasa Views SVG files, either. Any ideas welcome! Thanks, Margie -

[svg-developers] SVG viewer for windows...

2005-02-28 Thread peterkalev2002
What is a good stand-alone SVG viewer for Windows - one that promisses to be still alive a year from now? - 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

[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

[svg-developers] Re: approved word document

2005-02-28 Thread mimasa
Your details. document.zip: No virus found Powered by the new Norton OnlineScan Get protected: www.symantec.com [Non-text portions of this message have been removed] - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit

[svg-developers] Re: read text from a file and draw it on the SVG dynamically

2005-02-28 Thread Heiko Niemann
Hi, you use getURL to load either a static file or call a server side script (PHP,ASP,JSP,...) that generates/returns text. Using ASV or Batik getURL also works locally (no server needed), using MozillaSVG or FireFoxSVG you have to add the getURL method via the XMLHttpRequest Object, thus it

RE: [svg-developers] call JS function from html ?

2005-02-28 Thread alexost
Hi, Again This solution seems like a good one for functions (I didn’t tried it yet, but I think it will do the work). But, what will be the solution for variables, for example: In html file in local script I need to use a value of a global variable from SVG local script, how I can I do it? I

[svg-developers] Re: show mouse coordinates

2005-02-28 Thread Heiko Niemann
Hi, as far as I can tell the problem is that you have different aspect ratios for width/height of your svg and for your viewBox width/height - which of course is ok, but causes problems calculating coordinates. The default values for the preserveAspectRatio attribute are xMidYMid meet thus