Ahh, thanks for the low down Robert! Is there a workaround? Just install the Adobe SVG I would assume? "Make everything as simple as possible, but...
63373
longsonr
Feb 11, 2010 4:11 pm
Alex, I'm afraid Adobe SVG viewer is not compatible with Firefox. I imagine BackgroundImage will be implemented one day there is an existing bug for it. ...
63374
cremnosedum
Feb 12, 2010 6:05 pm
Hi, ... I'm not sure about most of your issues. However in my web comic, I do have a navigation panel at the bottom which can be optionally removed (some of...
63375
Alexander Wykel
a_wykel
Feb 13, 2010 6:03 pm
Hi Svg-developers, I set up a Facebook profile where I can post my pictures, videos and events and I want to add you as a friend so you can see it. First, you...
63376
Alex Wykel
a_wykel
Feb 13, 2010 6:09 pm
Whoops! didn't know the SVG alias was in my list of contacts, However there it is, feel free to invite me to be friends if you like... Alex "Make everything as...
63377
Francis Hemsher
fhemsher
Feb 14, 2010 12:45 am
Hi Alex, Friendship a dear gift these days. I won't join just yet. I would however, like to send you of a photo of myself with my three lovely daughters to...
63378
motheherder
Feb 16, 2010 1:27 am
I have a div i need to display above an embedded svg, I am able to get this to work in Firefox but not Internet explorer. IE seems to set the embed as the top...
63379
bahaa.massad
Feb 16, 2010 12:46 pm
Dear all kindly anyone have a java code to convert SVG to GML or GML to SVG please send it to me urgent Thanks Best Regards Bahaa Massad...
63380
root2art
Feb 16, 2010 3:21 pm
hi motheherder, try adding ' wmode="transparent" ' to your embed tag. for ie this makes the svg doc background transparent, but also seems to fix your problem....
63381
zedkineece
Feb 16, 2010 3:24 pm
We have a script that performs highlighting of certain <g> elements during the onmouseover, onmouseout and onclick events. We have changed up the SVG code a...
63382
Alex Wykel
a_wykel
Feb 16, 2010 3:30 pm
Francis Hemsher did much work on highlighting... Francis? I don't have the link to the thread... "Make everything as simple as possible, but notsimpler." --...
63383
Francis Hemsher
fhemsher
Feb 16, 2010 9:08 pm
Hi zedkineece, Could you tell us what svg application you are using to build the source? It seems to be creating a ton of polygons rather than more compact...
63384
zedkineece
Feb 16, 2010 9:51 pm
Hi Francis, ... CAD2SVG (COTS software). The source drawings are DWG which are then converted to SVG. ... Yes - to everything contained within the parent <g>...
63385
zedkineece
Feb 16, 2010 9:52 pm
Link to original thread: http://tech.groups.yahoo.com/group/svg-developers/message/62484 zed...
63386
zedkineece
Feb 16, 2010 9:52 pm
Also, I forgot to mention we are using Renesis......
63387
zedkineece
Feb 16, 2010 9:52 pm
Actually, the events should be as: onmouseover="highlight(evt, 0)" onmouseout="highlight(evt, 1)" onclick="highlight(evt, 2, 'rgb(255,127,0)')" I was testing...
63388
Kevin Myers
myersoil1
Feb 16, 2010 9:54 pm
Hi Francis, I took a look at your example. Although it accomplishes the desired end result from an appearance perspective, it still does so in a manner that...
63389
Kevin Myers
myersoil1
Feb 16, 2010 9:54 pm
Hello Francis, In concept the dynamic SVG seems vaguely similar to what I need, but I think there is a substantial difference. In dynamic SVG, it appears that...
63390
Francis Hemsher
fhemsher
Feb 16, 2010 11:56 pm
Try this, 1. Remove the events from the the top <g>, (id="ETHERNET") 2. Place the events in each of its children <g> then use: function highlight(evt, mode) { ...
63391
Francis Hemsher
fhemsher
Feb 17, 2010 12:52 am
... Hi Kevin, Yes, A looks messy B, however, is possible if we create svg elements rather than symbol+use pairings. Firstly you have an SVG symbol library as a...
63392
Kevin Myers
myersoil1
Feb 17, 2010 2:21 am
Would an existing application that imports svg files be able to comprehend and automagically perform the element substitution magic that you describe, or would...
63393
Kurt Martin
zedkineece
Feb 17, 2010 2:29 pm
Hi Francis: I get the following error when using your code: topG.childNodes.item(k).setAttribute is not a function Which is exactly the same error I got every...
63394
Alex Wykel
a_wykel
Feb 17, 2010 2:47 pm
Yes, I truly believe that a full JavaScript port would be necessary, take the web server out of the equation and use static pages to isolate the results. "Make...
63395
Francis Hemsher
fhemsher
Feb 17, 2010 3:57 pm
... I suspect, because of 'hand-coding39;, you're getting some 'white-space39; elements. In Adobe SVG Viewer they show as "#text" elements. You have to filter...
63396
Francis Hemsher
fhemsher
Feb 17, 2010 4:12 pm
... Yes! The user-agent will receive just SVG to render as it normally would. The app does all the work before it sends the SVG. I placed an example of an app...
63397
israel_eisenberg
israel_eisen...
Feb 18, 2010 12:19 pm
Hi zed, I took the code you posted in: http://tech.groups.yahoo.com/group/svg-developers/message/63384 as is i.e. all that is between the two asterisked rows,...
63398
Ghansham Nanda
gncsp
Feb 18, 2010 1:26 pm
... Hi Inkscape generates pdf files from svg. In windows OS its command line options allow to generate a pdf from an svg file without any gui. l G.Nanda ...
63399
zedkineece
Feb 18, 2010 2:21 pm
Hi Israel, I appreciate your help on this. I looked at your code, but it won't perform the desired result. The "problem" is that we have two child <g> elements...
63400
PETER
peterbyers1...
Feb 19, 2010 9:59 am
Hi I started, a few years ago, using SVG in Internet Explorer with Adobe SVG plugin and became quite reasonable at it. Recently, I have started adapting the...
63401
Holger Jeromin
holger.jeromin
Feb 19, 2010 11:12 am
... Firebug shows the problem. svgDocument is not defined (and therefrom is getElementById no function) Since the SVG is your root document, change the line...