I have a html document with an emtpy, embedded svg document. I want to fill this svg document with dojo from an xml file containing a rect element. First i...
54672
Martin Honnen
honnen_martin
Mar 1, 2006 2:10 pm
... That is a namespace issue, make sure your SVG elements are in the proper namespace http://www.w3.org/2000/svg so that snippet you send should be corrected...
54673
mekow
Mar 1, 2006 3:04 pm
With the exception of manually parsing the "d" attribute, is there a way to get a boundbox around a path? I have county data represented by paths and I'd like...
54674
Sylvain Rouillard
rouillardsy
Mar 1, 2006 4:17 pm
Hi list, I have a problem with ASV, which gives me a blank page when loading remote SVG files. Here are the relevant information I could gather: I have two...
54675
bmarquie
Mar 1, 2006 4:26 pm
Did you try to use getBBox() on your path element? If it's not working try to put your path element inside a g element, and call getBBox on the g element. ...
54677
bmarquie
Mar 1, 2006 4:28 pm
just an idea : is there Visual Studio 2005 installed on one of the computers ? Bruno ... tarifs exceptionnels pour appeler la France et l'international....
54678
Sylvain Rouillard
rouillardsy
Mar 1, 2006 4:32 pm
... OMG... Visual Web Developer Express 2005 is installed on the machine where ASV does not work properly... why? :-s ...
54679
Martin Honnen
honnen_martin
Mar 1, 2006 4:37 pm
... Depending on the SVG implementation you need different methods, with IE you likely use the Adobe SVG viewer, there you can use getURL and parseXML ...
54680
omzeta
Mar 1, 2006 4:37 pm
Hi all, I have 2 SVG files (arc1.svg, arc2.svg). I would like include the arc2.svg inside of arc1.svg. How to do this? Thanks in advance....
54681
Martin Honnen
honnen_martin
Mar 1, 2006 4:47 pm
... The image element allows you the inclusion, <http://www.w3.org/TR/SVG11/struct.html#ImageElement> e.g. you can do <image...
54682
omzeta
Mar 1, 2006 4:51 pm
excellent, thanks.....
54683
bmarquie
Mar 1, 2006 4:52 pm
ok :) we just had the same problem some months ago :) http://forums.asp.net/1063963/ShowPost.aspx So if you do something like that : <embed...
54684
Sylvain Rouillard
rouillardsy
Mar 1, 2006 5:01 pm
... Pfewwww, what a relief! Thank you so much Bruno, you make my day! Merci! ___________________________________________________________________________ ...
54685
Sayed Arian Kooshesh
mekow
Mar 1, 2006 5:21 pm
can you show me an example? is getBBox a method of svgpathelement? ... -- "Art manifests desire in the imagination, but machines are an attempt to manifest...
54686
chiluvuri1
Mar 1, 2006 7:20 pm
Dear Friends, I learned a lot from the great group of contributors to this group. Based on that I have created an innovative method to create GUI-API (akin to...
54687
Martin Honnen
honnen_martin
Mar 1, 2006 7:27 pm
... Here is a simple example <?xml version="1.0" encoding="UTF-8"?> <svg xmlns="http://www.w3.org/2000/svg"> <title>bounding box example</title> <script...
54688
Peter Thompson
plthompson2004
Mar 1, 2006 7:38 pm
This isn't SVG specific, but is related. What are good (or the standard) algorithms/data structures used for quick retrieval of vector data, like coastline...
54689
kubik_sj
Mar 1, 2006 8:05 pm
Hi group, Does anyone have any examples of VoiceXML and SVG (or better yet, SVGT)? Thanks much, Sara...
54690
Henrique G. Testa
hgtesta
Mar 1, 2006 9:46 pm
Hi, In my project, I must import a .js (javascript) file into an SVG document. I have goggled all over the internet but found nothing. I also have tried the...
54691
G. Wade Johnson
gwadej
Mar 2, 2006 1:11 am
SVG uses the XLink attribute href to access external files. Try <svg height="200" width="200" xmlns="http://www.w3.org/2000/svg" ...
54692
Neiderer, Andrew (Civ...
reindeer21005
Mar 2, 2006 8:27 am
How does one handle multiple external JavaScript ? For example, is it as straightforward as <svg height="200" width="200" xmlns="http://www.w3.org/2000/svg" ...
54693
Barend Köbben
barendkobben
Mar 2, 2006 8:27 am
What do you mean by "retrieval of vector data"..? Retrieval as in "I just retrieved it from the database". Do I gather you are looking for effeicient data...
54694
Barend Köbben
barendkobben
Mar 2, 2006 8:35 am
Hi there, I appreciate the pitch you've put in ... and would suspect that what you guyd are building might be very useful. I am not a software engineer, so I...
54695
Jonathan mayer
jonrmayer
Mar 2, 2006 10:05 am
Place within <defs> section <script xlink:href="./math.js" type="text/javascript"/> Jonathan ... ...
54696
Omar Abo-Namous
merlinperlin...
Mar 2, 2006 12:00 pm
Hi, does one have to place it into defs-section?? I think it works without!? thnx anyway. Omar...
54697
Martin Honnen
honnen_martin
Mar 2, 2006 1:03 pm
... Some months ago someone asked here on the list about using Adobe SVG viewer as a plugin in Opera 8 to render SVG and Opera 8's VoiceXML support that can be...
54698
G. Wade Johnson
gwadej
Mar 2, 2006 1:15 pm
Yes. The script tag is allowed outside the defs element. Since the defs element is for referenced and non-displayed elements, many people put script tags there...
54699
Jeroen Vanattenhoven
jvanattenhoven
Mar 2, 2006 1:19 pm
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...
54700
Peter Thompson
plthompson2004
Mar 2, 2006 1:25 pm
The xlinks don't have to be in the defs section. I don't know if they belong there. This is what works for me: <svg width="200" height="200" ...
54701
Andre M. Winter - Car...
raxmapa
Mar 2, 2006 2:12 pm
... when you mean in an asynchrony way - no. you can load them but they will not be interpreted as the script-interpreter reads them unload of the main file....