Re: [svg-developers] WMS into SVG

2007-01-17 Thread Barend Köbben
Hi, Succes for this would depend on: - if the WMS indeed serves the PNG transparently. What WMS do you use? - if the User Agent (SVG viewer) actually can display the PNG transparency. What UA do you use? Did you try using another image format, eg GIF? __ Barend Köbben International Institute fo

[svg-developers] OutofMemory Exception with simple JSVGCanvas Application

2007-01-17 Thread olafraether
Hi, if have a very simple Batik App. - import org.apache.batik.swing.JSVGCanvas; public class TestRenderer { public void startTestRender() { for (int i = 0; i < 1000; i++) { JSVGCanvas canvas1 = new JSVGCa

[svg-developers] WMS into SVG

2007-01-17 Thread benoist
Hello community, I load wms data into my svg server application, through the following : myImageUrl += "&service=WMS&version="+version+"&request=GetMap&layers="+layerWmsName+"&sty les=&srs=EPSG:" + myMainMap.epsg; myImageUrl += "&BBox=" + myMainMap.curxOrig + "," + (myMainMap.curyOrig + myMai

[svg-developers] Re: Traverse DOM and change attributes

2007-01-17 Thread simonshutter
Thanks, Martin. It worked fine in FF2 and IE7/ASV3. I also tried the following that was provided to me in another forum but it only worked in FF2 and not IE7/ASV3. Any idea why this is? var myEl=document.getElementById('yaxisGroup').getElementsByTagName ('text'); var newVal=['15.00','12.00','4

[svg-developers] Re: Traverse DOM and change attributes

2007-01-17 Thread simonshutter
Thanks David ! --- In svg-developers@yahoogroups.com, David Dailey <[EMAIL PROTECTED]> wrote: > > Try > > function moveem(){ > Root = document.documentElement; > G=document.getElementById("yaxisGroup") > Nodes=G.getElementsByTagName("text") > for (i=0;i

Re: [svg-developers] VML Version of SVG Work

2007-01-17 Thread Doug Schepers
Hi, Larry- lpmlabs9 wrote: > The decision by Adobe to pull support for their plugin is causing > concern by current and potential clients of SVG-based components that > I have built. That's unfortunate. In reality, Adobe has not "supported" ASV for years (except for plugging security holes

Re: [svg-developers] VML Version of SVG Work

2007-01-17 Thread David Dailey
At 12:56 AM 1/17/2007, Larry wrote: >The decision by Adobe to pull support for their plugin is causing >concern by current and potential clients of SVG-based components that >I have built. Before I began using SVG a number of years back, I >built a few samples with VML. Now I must give an estimate

Re: [svg-developers] Traverse DOM and change attributes

2007-01-17 Thread David Dailey
Try function moveem(){ Root = document.documentElement; G=document.getElementById("yaxisGroup") Nodes=G.getElementsByTagName("text") for (i=0;i then move it. otherwise don't. That is because some of the children of G are #text's consisting of the white space b

[svg-developers] Re: Traverse DOM and change attributes

2007-01-17 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, "simonshutter" <[EMAIL PROTECTED]> wrote: > I'm struggling with Javascript and the DOM. Can anyone help me with > the appropriate script to get the element and loop through the > elements, changing the value of each "y" attribute as I go. > > Dog >

[svg-developers] svg chart creation from database

2007-01-17 Thread santosh_2781
Hi,I want the c# code to get the data from the database and plot those values in svg for creating a 2 dimensional chart in asp.net 2.0. I will be very much thankfull. - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "ed

[svg-developers] Re: Firefox: Mouseover slowed by point symbols

2007-01-17 Thread richard_smith_ons
The location points don't work on Opera because of this "show- stopper" http://my.opera.com/community/forums/topic.dml?id=146469 so the tab is greyed out. There are other things that don't quite work right with Opera but they haven't been fixed becuase currently we currently only support IE /ASV

[svg-developers] Traverse DOM and change attributes

2007-01-17 Thread simonshutter
Hi, I'm struggling with Javascript and the DOM. Can anyone help me with the appropriate script to get the element and loop through the elements, changing the value of each "y" attribute as I go. The relevant fragment is shown below. Thanks, Simon Dog Cat Horse Bird - To un