[svg-developers] SVGT Openings @ Bangalore

2005-07-18 Thread it_xpert
Hi, We have immediate Openings for SVGT Professional for Bangalore Location. Position Details: 1. C/C++,Windows/Print subsystems. Should have worked on Scalable Vector Graphics Templates(SGVT). Should have used Version Manager. Hands on experience on design, coding, unit testing and debugging

[svg-developers] slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-18 Thread meikelneu
I am currently experimenting with the SVG enabled preview versions of Firefox 1.1 (Deer Park Alpha 2). So far I got to understand how to rewrite most of the scripts I use so that they will work on both ASV3 and Firefox_1.1. However, I am a big fan of Kevin Lindsey's slider. Since his slider uses

[svg-developers] Re: slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-18 Thread Jim Ley
meikelneu [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] However, I am a big fan of Kevin Lindsey's slider. Since his slider uses parseXML it will only run with the Adobe SVG plugin. It's easy to add parseXML to Deer Park, just include this script: if (!window.parseXML Window

Re: [svg-developers] slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-18 Thread Jorg Heymans
meikelneu wrote: Does anybody know if it is possible to built a slider with the functionality Firefox_1.1. will offer? It wouldn't have to be that universal as Kevin's but is it possible? Did you have a look at Spark [1] ? It has a bunch of useful widgets, the slider is only one of them.

[svg-developers] transformation matrix

2005-07-18 Thread maria ulfa
hi, I converted an arcview shapefile into SVG, and I got g transform=”matrix(1 0 0 –1 0 1.899789797090e7)” where does the value of translation 1.899789797090e7 come from??? Thanks for your response….. Maria, __ Do You Yahoo!? Tired of

[svg-developers] transformation matrix

2005-07-18 Thread maria ulfa
hi, I converted an arcview shapefile into SVG, and I got g transform=”matrix(1 0 0 –1 0 1.899789797090e7)” where does the value of translation 1.899789797090e7 come from??? Thanks for your response….. Maria, __ Do You Yahoo!? Tired of

[svg-developers] Re: SVG Map

2005-07-18 Thread gh_urban
--- In svg-developers@yahoogroups.com, robsvgd [EMAIL PROTECTED] wrote: Hi, I'm trying to make an SVG map but when I use the following code nothing appears in my SVG doc? It should be a line? If anyone could offer any suggestions it would be much appreciated. Cheers, Rob Hi rob

[svg-developers] Re: OnEnd Doesn't Work???

2005-07-18 Thread gh_urban
Bob can you provide the code that you use to add this programmtically, maybe its how you've done it ? Garry --- In svg-developers@yahoogroups.com, Bob Hunter [EMAIL PROTECTED] wrote: I was hoping to use onend to call a function at the end of an animation. It seems to work fine if the

[svg-developers] Re: slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-18 Thread meikelneu
--- In svg-developers@yahoogroups.com, Jorg Heymans [EMAIL PROTECTED] wrote: meikelneu wrote: Does anybody know if it is possible to built a slider with the functionality Firefox_1.1. will offer? It wouldn't have to be that universal as Kevin's but is it possible? Did you have a look

[svg-developers] Re: slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-18 Thread meikelneu
--- In svg-developers@yahoogroups.com, Jim Ley [EMAIL PROTECTED] wrote: It's easy to add parseXML to Deer Park, just include this script: ... but there's no reason why a slider needs the functionality. Thanks Jim for sharing this script. I am not sure if I can build a slider then, or make

[svg-developers] zoom/pan svg image, only inside a frame

2005-07-18 Thread spanakimaria
How can I have an svg frame that can not be panned or zoomed, and an svg image inside the frame that allows zoom and pan? Thanks, Maria - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership

Re: [svg-developers] SVG Wiki

2005-07-18 Thread Marjorie Roswell
Just getting back into SVG. What's the story with the wiki? (I love instantatlas.com. Great stuff.) On 3/28/05, Antoine Quint [EMAIL PROTECTED] wrote: On 28 mars 2005, at 17:02, Marjorie Roswell wrote: http://wiki.svg.org/ used to be a great resource, before a spammer took over.

Re: [svg-developers] zoom/pan svg image, only inside a frame

2005-07-18 Thread Holger Will
spanakimaria schrieb: How can I have an svg frame that can not be panned or zoomed, and an svg image inside the frame that allows zoom and pan? Thanks, Maria Hi Maria i believe its not directly possible, what you can do is allow zoom/pan on your outer svg frame, and then have a group

[svg-developers] Trying to understand an application (from a user perspective)

2005-07-18 Thread Marjorie Roswell
I'm a little puzzled by: http://www.ika.ethz.ch/isakowski/migration/ Of course, I don't speak German, so that's part of the problem (that is German?). Also, when I press the Mehr Info button, the help URL isn't completely loading. So, I understand all the usual stuff, panning, zooming, classes,

[svg-developers] Re: Trying to understand an application (from a user perspective)

2005-07-18 Thread gh_urban
--- In svg-developers@yahoogroups.com, Marjorie Roswell [EMAIL PROTECTED] wrote: So, I understand all the usual stuff, panning, zooming, classes, legends, colors (all nicely implemented), but I haven't figured out what the boxes in the lower left-hand corner represent. I gather it's some

[svg-developers] [that damned] beginElement()

2005-07-18 Thread gh_urban
tottaly bemused by this I have looked at the many answers already on this group, hacked my code to exactly as some of the final answers still no joy, anybody see what's wrong with it? here's the code: function aniBtn(){ //create a reference for the object that wants animating

[svg-developers] Re: [that damned] beginElement()

2005-07-18 Thread gh_urban
the element 'bt1' is a rect by the way --- In svg-developers@yahoogroups.com, gh_urban [EMAIL PROTECTED] wrote: tottaly bemused by this I have looked at the many answers already on this group, hacked my code to exactly as some of the final answers still no joy, anybody see what's wrong

Re: [svg-developers] [that damned] beginElement()

2005-07-18 Thread Holger Will
gh_urban schrieb: tottaly bemused by this I have looked at the many answers already on this group, hacked my code to exactly as some of the final answers still no joy, anybody see what's wrong with it? here's the code: function aniBtn(){ //create a reference for the object

Re: [svg-developers] slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-18 Thread Holger Will
meikelneu schrieb: I am currently experimenting with the SVG enabled preview versions of Firefox 1.1 (Deer Park Alpha 2). So far I got to understand how to rewrite most of the scripts I use so that they will work on both ASV3 and Firefox_1.1. However, I am a big fan of Kevin Lindsey's

[svg-developers] Re: [that damned] beginElement()

2005-07-18 Thread gh_urban
Thanks Holger, did the trick what i was trying to originally was after the animate element was added then to run the animation I was using a.setAttribute(begin, indefinite); and then sending document.getElementById('anim2').beginElement() but I'm guessing this beginElement() is sent

[svg-developers] Re: [that damned] beginElement()

2005-07-18 Thread gh_urban
ooops again I meaned 'setTimeOut' of course, setInteval would see it looping! --- In svg-developers@yahoogroups.com, gh_urban [EMAIL PROTECTED] wrote: Thanks Holger, did the trick what i was trying to originally was after the animate element was added then to run the animation I was

Re: [svg-developers] Re: [that damned] beginElement()

2005-07-18 Thread Holger Will
gh_urban schrieb: Thanks Holger, did the trick what i was trying to originally was after the animate element was added then to run the animation I was using a.setAttribute(begin, indefinite); and then sending document.getElementById('anim2').beginElement() but I'm guessing

Re: [svg-developers] Re: [that damned] beginElement()

2005-07-18 Thread Holger Will
Holger Will schrieb: gh_urban schrieb: Thanks Holger, did the trick what i was trying to originally was after the animate element was added then to run the animation I was using a.setAttribute(begin, indefinite); and then sending

[svg-developers] Re: [that damned] beginElement()

2005-07-18 Thread gh_urban
--- In svg-developers@yahoogroups.com, gh_urban [EMAIL PROTECTED] wrote: ooops again I meaned 'setTimeOut' of course, setInteval would see it looping! although both SetTimeout and setInterval have worked, they are perticuarly unstable so not really the solution the question remains:

RE: [svg-developers] Re: how to draw rialroad line style in SVG

2005-07-18 Thread Peter Kalev
Draw a line with stroke=3 stroke-color=red, now copy and paste the line and change the style to stroke=1 stroke-color=white, make the white line an even dash-array... You got yourself a topographical representation of a railroad... :) Peter Kalev Senior Developer, SWF, LLC -Original

Re: [svg-developers] Re: [that damned] beginElement()

2005-07-18 Thread Holger Will
gh_urban schrieb: --- In svg-developers@yahoogroups.com, gh_urban [EMAIL PROTECTED] wrote: ooops again I meaned 'setTimeOut' of course, setInteval would see it looping! although both SetTimeout and setInterval have worked, they are perticuarly unstable so not really the solution

[svg-developers] Microsoft to aquire ASV3/6

2005-07-18 Thread Francis Hemsher
OK this is NOT a news release, but a vision on the future of SVG. I see no other option to SVG being used in a dynamic browser environment. Francis - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership

[svg-developers] Microsoft to aquire ASV3/6

2005-07-18 Thread Francis Hemsher
OK this is NOT a news release, but a vision on the future of SVG. I see no other option to SVG being used in a dynamic browser environment. Francis - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership

[svg-developers] Microsoft to aquire ASV3/6

2005-07-18 Thread Francis Hemsher
OK this is NOT a news release, but a vision on the future of SVG. I see no other option to SVG being used in a dynamic browser environment. Francis - 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: Microsoft to aquire ASV3/6

2005-07-18 Thread Francis Hemsher
Sorry, for some reason this thingie got posted 3X :( f. --- In svg-developers@yahoogroups.com, Francis Hemsher [EMAIL PROTECTED] wrote: OK this is NOT a news release, but a vision on the future of SVG. I see no other option to SVG being used in a dynamic browser environment. Francis

[svg-developers] Re: how to draw rialroad line style in SVG

2005-07-18 Thread zhg331
any help? --- In svg-developers@yahoogroups.com, zhg331 [EMAIL PROTECTED] wrote: Hi group, I am a beginner with SVG. I want to know is there any way to draw railroad-like line with SVG. many thanks - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit

[svg-developers] Re: [that damned] beginElement()

2005-07-18 Thread Garry Haywood
the question remains: what is the best way to programmtically begin an animation that you have added thru the DOM ? i would still say beginElement is the way to go. one way that is stable, add the animate tag by hand, and just change the attributes via script. hth Holger the

[svg-developers] Re: how to draw rialroad line style in SVG

2005-07-18 Thread Garry Haywood
--- In svg-developers@yahoogroups.com, zhg331 [EMAIL PROTECTED] wrote: any help? --- In svg-developers@yahoogroups.com, zhg331 [EMAIL PROTECTED] wrote: Hi group, I am a beginner with SVG. I want to know is there any way to draw railroad-like line with SVG. many thanks If you mean is

[svg-developers] Re: how to draw rialroad line style in SVG

2005-07-18 Thread Heiko Niemann
Hi, here is a sample where you can see what Peter Kalev suggested: http://www.zuccaralloo.de/devgroup/samples/railroad.svg So you could define entities which makes things easier when you need to change a path. Since this sample also uses textpath and animation it probably just will run with

[svg-developers] ,Protecting the Svg File

2005-07-18 Thread thequantimizer
Hi , Is there any way to protect your svg file , as on right click the user can see the source and even copy it , can we disable the right click menu without disabling the prime functionalities like zoom in and pan ,zoomout . regards, Usman - To unsubscribe send a message to: [EMAIL

[svg-developers] ClipPath Query

2005-07-18 Thread ibikhan
Hi all! I want to clip a shape but I want only that portion is drawn which is outside of a certain shape. For instance, I want to clip ellipse but only that portion which lies outside of a rectangle . Regards - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit