[svg-developers] Re: need help with making two svg objects from one

2010-11-29 Thread foofoo1900
Thank you, Patrick! I'll try your suggestion!

--- In svg-developers@yahoogroups.com, "patrickdengler"  
wrote:
>
> This is VERY COOL.  
> 
> There are a couple of ways you could expirement.  Probably the easiest I can 
> think of is iframe two of them (don't use object), put the SVG contents 
> inline into html or XHTML, pass in the direction &direction=1 as a param 
> differently for each iframe.
> 
> Patrick Dengler
> Internet Explorer 
> SVG WG  
> 
> --- In svg-developers@yahoogroups.com, "foofoo1900"  wrote:
> >
> > Hi,
> > 
> > For a project I'm working on I need to have two vortex spirals rotating in 
> > the opposite direction next to each other: @@
> > I found a great implementation of one vortex spiral in svg here:
> > http://chriswjohnson.blogspot.com/2008/08/you-are-getting-sleepy-very-slpy.html
> > the direct link to the svg file is:
> > http://homepage.mac.com/chriswjohnson/automatons/rotating-spiral-1.svg
> > 
> > I'm stuck at trying to figure out how to make this svg object appear twice, 
> > next to each other. Simply copying the contents of the file twice doesn't 
> > seem to do the trick. I suppose there can be only one container per svg 
> > file. Any ideas or RTFM pointers?
> > 
> > Of course if you have a double vortex svg already available that would be 
> > even better!
> > 
> > Thank you for your help.
> >
>






-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



[svg-developers] ASV problem

2010-11-29 Thread horsul
Greetings,
I have a problem with ASV.
If I try to use Microsoft Web Control in .Net-application for showing 
svg-content, I get
page without svg. Although if I try to open the same page in IE8 - everything 
is fine. 
It appears when I use Windows 7 and IE8 configuration ONLY.

Do anyone knows how to fix this? Any hints would be appreciated.





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



[svg-developers] Re: Stroking small text

2010-11-29 Thread scalablev
I've been using a filter for my text halos and it's been great. As IE9 doesn't 
support filters, I need an alternative. Holger's method doesn't seem to work in 
IE9. Are there any other workarounds for this?

--- In svg-developers@yahoogroups.com, Holger Will  wrote:
>
> hi
> 
> here is another method, using tref:
> 
> 
> http://www.w3.org/2000/svg"; 
> xmlns:xlink="http://www.w3.org/1999/xlink"; width="500" height="500">
> 
> Mellomveien
> 
>  style="fill:rgb(242,172,190);stroke:rgb(0,0,0);stroke-width:1"/> 
>  style="fill:rgb(0,0,0);font-family:Arial;font-size:11;">
>  xlink:href="#mel"/>
> 
> 
> 
> 
> have fun
> holger
> 
> scalablev wrote:
> 
> >
> > Thanks Kirby and Doug!
> >
> > This is something I can use.
> >
> >
> >
> > --- In svg-developers@yahoogroups.com, "Doug Schepers" 
> > wrote:
> > > Nice work, Kirby.
> > >
> > > If they don't want the outline to be blurry, they can just do this:
> > >
> > >  > >x='-15%' y='-15%' width='130%' height='130%'>
> > > > >   values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/>
> > > > > result='outline'/>
> > >
> > > 
> > >
> > > In general, though, filters are not well support across viewers,
> > and are
> > > rather expensive to do. If they has a large number of text nodes,
> > it might
> > > cause a problem. Still, this may well be just what they need.
> > >
> > > Regards-
> > > Doug
> > >
> > > skatethere wrote:
> > > |
> > > |
> > > | --- In svg-developers@yahoogroups.com, "scalablev" 
> > wrote:
> > > | >
> > > | > Hi!
> > > | >
> > > | > I want to display text with a small white line around it,
> > > | like this:
> > > | > http://kart.nois.no/test/svgtext/text.gif.
> > > | >
> > > | > Stroking the text seems to obscure the text itself. I'm not
> > getting
> > > | > exactly what I want with a filter either:
> > > | > http://kart.nois.no/test/svgtext/text.svg
> > > | >
> > > | > Any suggestions?
> > > |
> > > | Have you tried using filters, like this:
> > > |
> > > | 
> > > |  > > |   "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd";>
> > > |  > > |  xmlns="http://www.w3.org/2000/svg"; version="1.1"> 
> > > |   
> > > |  > > |values="0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0"/>
> > > |  > > | operator="dilate"/>
> > > | 
> > > |  > > |   operator="over"/>
> > > |   
> > > | 
> > > |   > > | x="0" y="20" font-size="14" fill="black"
> > > | filter="url(#halo)">Mellomveien
> > > | 
> > > |
> > > |   --kirby
> >
> >
>






-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



Re: [svg-developers] SVG tag support in chrome???

2010-11-29 Thread Jacob Beard
It's working on Chromium 7.0.517.44 (64615) on Ubuntu 10.04.

Jake

On Mon, Nov 29, 2010 at 1:01 PM, Chris Peto wrote:

>
>
> Hi,
>
> I just tested it in Chrome, works fine. But, if you changed the code to use
> 'Use' tag it will still not work, no. But, my example does not need 'use'
> tag.
>
> What version of chrome are you using? I am using 7.0.517.44 under windows.
>
>
> Regards,
>
> Chris
>
> From: svg-developers@yahoogroups.com 
> [mailto:
> svg-developers@yahoogroups.com ] On
> Behalf Of Mr Rauf
>  Sent: Montag, 29. November 2010 12:36
>
> To: svg-developers@yahoogroups.com 
> Subject: RE: [svg-developers] SVG  tag support in chrome???
>
> Thanx Chris,
> i download your code its also not working in chrome
>
> --- On Mon, 11/29/10, Chris Peto 
>  svgdev%40resource-solutions.de > >
> wrote:
>
> From: Chris Peto 
>  svgdev%40resource-solutions.de > >
>
> Subject: RE: [svg-developers] SVG  tag support in chrome???
> To: svg-developers@yahoogroups.com  svg-developers%40yahoogroups.com >
>  Date: Monday, November 29, 2010, 2:40 AM
>
> Hi,
>
> Did you not get my example? I did grouping without Use.
>
> Regards,
>
> Chris
>
> From: svg-developers@yahoogroups.com 
>  svg-developers%40yahoogroups.com >
> [mailto:svg-developers@yahoogroups.com 
>  svg-developers%40yahoogroups.com > ]
>
>
> On Behalf Of Mr Rauf
>
> Sent: Montag, 29. November 2010 11:17
>
> To: svg-developers@yahoogroups.com  svg-developers%40yahoogroups.com >
>
> Subject: Re: [svg-developers] SVG  tag support in chrome???
>
> thanx Jacob Beard,
>
> Is there any other way i attempt groupping in SVG?? i want to move more
>
> then one objects dragging together..
>
> --- On Sun, 11/28/10, Jacob Beard 
>  jbeard4%40cs.mcgill.ca >
>
>  > wrote:
>
> From: Jacob Beard   jbeard4%40cs.mcgill.ca >  jbeard4%40cs.mcgill.ca > >
>
>
> Subject: Re: [svg-developers] SVG  tag support in chrome???
>
> To: "svg-developers" 
>  svg-developers%40yahoogroups.com >
>
> 
> >
>
> Date: Sunday, November 28, 2010, 11:11 PM
>
> Use works in Chrome, but not for referencing external resources. This is
> due
>
> to a bug in upstream Webkit: https://bugs.webkit.org/show_bug.cgi?id=12499
>
> It might be good to vote on this issue on the Webkit bug tracker if you
> find
>
> it important.
>
> Jake
>
> On Mon, Nov 29, 2010 at 7:38 AM, Mr Rauf 
>  cute_rauf_696%40yahoo.com >
>
>  > wrote:
>
> >
>
> >
>
> > hi all,
>
> > i am working on the svg grouping.I did it last day but the problem is
>
> that,
>
> > code is not working on google chrome.Does chrome have not some SVG tag
>
> > support.i think problem with svg use tag..
>
> >
>
> > Thanks in advance
>
> >
>
> >
>
> >
>
> [Non-text portions of this message have been removed]
>
> 
>
> -
>
> To unsubscribe send a message to:
> svg-developers-unsubscr...@yahoogroups.com svg-developers-unsubscribe%40yahoogroups.com>
>
>
> 
>
>
> -or-
>
> visit http://groups.yahoo.com/group/svg-developers and click "edit my
>
> membership"
>
> Yahoo! Groups Links
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
>  
>


[Non-text portions of this message have been removed]





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



[svg-developers] Re: SVG Fonts

2010-11-29 Thread scalablev
http://www.treebuilder.de/default.asp?file=192928.xml actually crashes my 
Firefox 3.6. Looks ok in Opera, but not in IE9 beta. SVG Fonts won't be 
supported in IE9 according to Microsoft. I'm assuming this includes the tiny 
subset. Can anything be done with the example to make it render properly in IE9 
do you think? 

--- In svg-developers@yahoogroups.com, "Erik Dahlstrom"  wrote:
>
> On Sun, 14 Nov 2010 14:46:27 +0100, scalablev  wrote:
> 
> > Looks like http://zuccaralloo.de/devgroup/samples/complexPaths.svg only  
> > displays as it should in ASV. Is this because native implementations  
> > don't support SVG Fonts?
> 
> No, it's because most implementations haven't implemented support for  
> anything else than the tiny subset of SVG Fonts, see  
> http://www.w3.org/TR/SVGTiny12/fonts.html. Essentially what this means is  
> that arbitrary svg markup inside a  element isn't supported, only  
>  elements that have a 'd' attribute will be rendered. Try it in  
> Opera or WebKit for example. Here's another example:  
> http://www.treebuilder.de/default.asp?file=192928.xml.






-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



[svg-developers] Re: panorama viewer using SVG

2010-11-29 Thread dom.schoeni
Well, sorry Tom, I think I was out of the topic : the panorama viewer you're 
searching for are far more complex than mine...

Dom



--- In svg-developers@yahoogroups.com, "dom.schoeni"  wrote:
>
> Hi Tom,
> 
> I found two different ways to do panoramas in svg.
> Here is the first one : it uses some trigonometric functions in js, which I 
> borrowed from M. Lane, University of Virginia's College at Wise.
> As I'm not a mathematician nor a programmer, I tried to do the simplest code 
> as possible (but it's rather long and messy, sorry).
> The trick is simply to put the panoramic pictures twice, and to make the 
> x-position of those pictures varry, so they are "following" each others.
> 
> Let me know what you think about this...
> 
> Cheers
> 
> Dom
> 
> Here is the code : 
> 
> 
>  "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd";>
> 
> http://www.w3.org/2000/svg";
> xmlns:xlink="http://www.w3.org/1999/xlink"; 
> xmlns:ev="http://www.w3.org/2001/xml-events";
> onload="Init( evt ); start(evt);" >
> 
> // 
> //this code is adapted from David Lane's js code  
> //http://www.maa.org/joma/Volume7/Lane/Gallery.html
> //thanks a lot !
> 
> var svgXLink = "http://www.w3.org/1999/xlink";;
> var svgNS = "http://www.w3.org/2000/svg";;
> var svgRoot;
> var mouseP, newP, circP;
> var bmousedown=0;
> var radline;
> var degtext;
> 
> function Init(){
> svgRoot  = document.documentElement;
> mouseP = svgRoot.createSVGPoint();
> newP = svgRoot.createSVGPoint();
> circP = svgRoot.createSVGPoint();
> radline  = document.getElementById("radline");
> circpoint  = document.getElementById("circpoint");
> mvm  = document.getElementById("mvm");
> mvm2  = document.getElementById("mvm2");
> mvm3  = document.getElementById("mvm3");
> mvm4  = document.getElementById("mvm4");
> compass  = document.getElementById("compass");
> }
> 
> /* 
> * Returns the mouse coordinates as an SVGPoint
> */
> function getMouse(evt){
> var position = svgRoot.createSVGPoint();
> position.x = evt.clientX;
> position.y = evt.clientY;
> return position;
> }
> /* 
> * Converts a mouse point to svg "user coordinates".
> */
> function getUserCoordinates(p1){
> var p1;
> var p2 = svgRoot.createSVGPoint();
> p2.x = p1.x - 140;
> p2.y = 140 -p1.y;
> return p2;
> }
> 
> /*
> * Mouse functions for the "canvas" event listeners
> */
> 
> function onMouseDown(evt){
> bmousedown=1;
> mouseP=getMouse(evt);
> newP=getUserCoordinates(mouseP);
> doUpdate();
> }
> function onMouseMove(evt){
> if(bmousedown){
>   mouseP=getMouse(evt);
>   newP=getUserCoordinates(mouseP);
> doUpdate();
> }
> }
> function onMouseUp(evt){
> bmousedown=0;
> }
> 
> function doUpdate(){
> var d = Math.sqrt(Math.pow(newP.x,2)+Math.pow(newP.y,2));
> var x,y,angle;
> var angled = Math.round(18000*getAngle(newP)/Math.PI)/100;
>   angled = Math.round(angled/5)*5;
>   angle = angled*Math.PI/180;
>   circP.x = 100*Math.cos(angle);
>   circP.y = 100*Math.sin(angle);
>   x = Math.round(10*Math.cos(angle))/10;
>   y = Math.round(10*Math.sin(angle))/10;
>   angle = Math.round(10*angle)/10;
> circpoint.setAttributeNS(null, "cx", circP.x );
> circpoint.setAttributeNS(null, "cy", circP.y );
> radline.setAttributeNS(null, "x2", circP.x );
> radline.setAttributeNS(null, "y2", circP.y ); 
> var rotang = 1800*getAngle(newP)/Math.PI;
> mvm.setAttributeNS(null, "x", -900 + rotang);
> mvm2.setAttributeNS(null, "x",-900 + rotang);
> mvm3.setAttributeNS(null, "x", 180 -(rotang)/5);
> mvm4.setAttributeNS(null, "x", 180 -(rotang)/5);
> rotatestring="rotate("+-(180*getAngle(newP)/Math.PI)+")";
> compass.setAttributeNS(null, "transform", rotatestring);
> var number 
> if (angled <= 90){number = 90-(parseInt(angled))};
> if (angled > 90){number = 450-(parseInt(angled))};
> document.getElementById("tx_frame").firstChild.nodeValue="degrés : 
> "+number+"°";
> if(number > 330 || number < 30) 
>   {setPage('p01');}
>   else if(number == 90) 
>  {setPage('p02');}
>else if(number > 150 && number < 210)
>{setPage('p03');}
>   else if(number > 240 && number < 300)
>{setPage('p04');}
>else
>{setPage('p05');}
> }
> function getAngle(p){
> var p, a;
> a=Math.atan2(p.y, p.x);
> if(a<=0){a=a+2*Math.PI;}
> return a;
> }
> 
> // les fonctions pour changer de page
> var curPage = null; 
> function start(evt) {
> if ( window.svgDocument == null )
> svgDocument = evt.target.ownerDocument;
> curPage = svgDocument.getElementById("p01");
> }
> function setPage (page) 

RE: [svg-developers] SVG tag support in chrome???

2010-11-29 Thread Chris Peto
Hi,

 

I just tested it in Chrome, works fine.  But, if you changed the code to use 
'Use' tag it will still not work, no.  But, my example does not need 'use' tag.

 

What version of chrome are you using?  I am using 7.0.517.44 under windows.

 

Regards,

Chris

 

From: svg-developers@yahoogroups.com [mailto:svg-develop...@yahoogroups.com] On 
Behalf Of Mr Rauf
Sent: Montag, 29. November 2010 12:36
To: svg-developers@yahoogroups.com
Subject: RE: [svg-developers] SVG  tag support in chrome???

 

  



Thanx Chris,
i download your code its also not working in chrome 

--- On Mon, 11/29/10, Chris Peto mailto:svgdev%40resource-solutions.de> > wrote:

From: Chris Peto mailto:svgdev%40resource-solutions.de> >
Subject: RE: [svg-developers] SVG  tag support in chrome???
To: svg-developers@yahoogroups.com  
Date: Monday, November 29, 2010, 2:40 AM

 

Hi,

Did you not get my example? I did grouping without Use.

Regards,

Chris

From: svg-developers@yahoogroups.com   
[mailto:svg-developers@yahoogroups.com 
 ]

On Behalf Of Mr Rauf

Sent: Montag, 29. November 2010 11:17

To: svg-developers@yahoogroups.com  

Subject: Re: [svg-developers] SVG  tag support in chrome???

thanx Jacob Beard,

Is there any other way i attempt groupping in SVG?? i want to move more

then one objects dragging together.. 

--- On Sun, 11/28/10, Jacob Beard mailto:jbeard4%40cs.mcgill.ca> 

 > wrote:

From: Jacob Beard mailto:jbeard4%40cs.mcgill.ca>  
 >

Subject: Re: [svg-developers] SVG  tag support in chrome???

To: "svg-developers" mailto:svg-developers%40yahoogroups.com> 

 >

Date: Sunday, November 28, 2010, 11:11 PM

Use works in Chrome, but not for referencing external resources. This is due

to a bug in upstream Webkit: https://bugs.webkit.org/show_bug.cgi?id=12499

It might be good to vote on this issue on the Webkit bug tracker if you find

it important.

Jake

On Mon, Nov 29, 2010 at 7:38 AM, Mr Rauf mailto:cute_rauf_696%40yahoo.com> 

 > wrote:

>

>

> hi all,

> i am working on the svg grouping.I did it last day but the problem is

that,

> code is not working on google chrome.Does chrome have not some SVG tag

> support.i think problem with svg use tag..

>

> Thanks in advance

>

> 

>

[Non-text portions of this message have been removed]



-

To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com 
 

 

-or-

visit http://groups.yahoo.com/group/svg-developers and click "edit my

membership"

Yahoo! Groups Links

[Non-text portions of this message have been removed]

[Non-text portions of this message have been removed]

[Non-text portions of this message have been removed]





[Non-text portions of this message have been removed]





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



RE: [svg-developers] SVG tag support in chrome???

2010-11-29 Thread Mr Rauf




Thanx Chris,
i download your code its also not working in chrome 

--- On Mon, 11/29/10, Chris Peto  wrote:

From: Chris Peto 
Subject: RE: [svg-developers] SVG  tag support in chrome???
To: svg-developers@yahoogroups.com
Date: Monday, November 29, 2010, 2:40 AM







 



  



  
  
  Hi,



Did you not get my example?  I did grouping without Use.



Regards,



Chris



From: svg-developers@yahoogroups.com [mailto:svg-develop...@yahoogroups.com]

On Behalf Of Mr Rauf

Sent: Montag, 29. November 2010 11:17

To: svg-developers@yahoogroups.com

Subject: Re: [svg-developers] SVG  tag support in chrome???



thanx Jacob Beard,

  Is there any other way i attempt groupping in SVG?? i want to move more

then one objects dragging together.. 



--- On Sun, 11/28/10, Jacob Beard mailto:jbeard4%40cs.mcgill.ca> > wrote:



From: Jacob Beard mailto:jbeard4%40cs.mcgill.ca> >

Subject: Re: [svg-developers] SVG  tag support in chrome???

To: "svg-developers" mailto:svg-developers%40yahoogroups.com> >

Date: Sunday, November 28, 2010, 11:11 PM



Use works in Chrome, but not for referencing external resources. This is due

to a bug in upstream Webkit: https://bugs.webkit.org/show_bug.cgi?id=12499



It might be good to vote on this issue on the Webkit bug tracker if you find

it important.



Jake



On Mon, Nov 29, 2010 at 7:38 AM, Mr Rauf mailto:cute_rauf_696%40yahoo.com> > wrote:



>

>

> hi all,

> i am working on the svg grouping.I did it last day but the problem is

that,

> code is not working on google chrome.Does chrome have not some SVG tag

> support.i think problem with svg use tag..

>

> Thanks in advance

>

>  

>



[Non-text portions of this message have been removed]







-

To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com

 

-or-

visit http://groups.yahoo.com/group/svg-developers and click "edit my

membership"

Yahoo! Groups Links



[Non-text portions of this message have been removed]



[Non-text portions of this message have been removed]






 





 



  






  

[Non-text portions of this message have been removed]





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



RE: [svg-developers] SVG tag support in chrome???

2010-11-29 Thread Chris Peto
http://www.resource-solutions.de/svg/select/groupping.svg

 

From: svg-developers@yahoogroups.com [mailto:svg-develop...@yahoogroups.com] On 
Behalf Of Mr Rauf
Sent: Montag, 29. November 2010 11:56
To: svg-developers@yahoogroups.com
Subject: RE: [svg-developers] SVG  tag support in chrome???

 

  

Thanx for reply,
No I did not,can u help me to find this exaample
--- On Mon, 11/29/10, Chris Peto mailto:svgdev%40resource-solutions.de> > wrote:

From: Chris Peto mailto:svgdev%40resource-solutions.de> >
Subject: RE: [svg-developers] SVG  tag support in chrome???
To: svg-developers@yahoogroups.com  
Date: Monday, November 29, 2010, 2:40 AM

 

Hi,

Did you not get my example? I did grouping without Use.

Regards,

Chris

From: svg-developers@yahoogroups.com   
[mailto:svg-developers@yahoogroups.com 
 ]

On Behalf Of Mr Rauf

Sent: Montag, 29. November 2010 11:17

To: svg-developers@yahoogroups.com  

Subject: Re: [svg-developers] SVG  tag support in chrome???

thanx Jacob Beard,

Is there any other way i attempt groupping in SVG?? i want to move more

then one objects dragging together.. 

--- On Sun, 11/28/10, Jacob Beard mailto:jbeard4%40cs.mcgill.ca> 

 > wrote:

From: Jacob Beard mailto:jbeard4%40cs.mcgill.ca>  
 >

Subject: Re: [svg-developers] SVG  tag support in chrome???

To: "svg-developers" mailto:svg-developers%40yahoogroups.com> 

 >

Date: Sunday, November 28, 2010, 11:11 PM

Use works in Chrome, but not for referencing external resources. This is due

to a bug in upstream Webkit: https://bugs.webkit.org/show_bug.cgi?id=12499

It might be good to vote on this issue on the Webkit bug tracker if you find

it important.

Jake

On Mon, Nov 29, 2010 at 7:38 AM, Mr Rauf mailto:cute_rauf_696%40yahoo.com> 

 > wrote:

>

>

> hi all,

> i am working on the svg grouping.I did it last day but the problem is

that,

> code is not working on google chrome.Does chrome have not some SVG tag

> support.i think problem with svg use tag..

>

> Thanks in advance

>

> 

>

[Non-text portions of this message have been removed]



-

To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com 
 

 

-or-

visit http://groups.yahoo.com/group/svg-developers and click "edit my

membership"

Yahoo! Groups Links

[Non-text portions of this message have been removed]

[Non-text portions of this message have been removed]

[Non-text portions of this message have been removed]





[Non-text portions of this message have been removed]





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



RE: [svg-developers] SVG tag support in chrome???

2010-11-29 Thread Mr Rauf
Thanx for reply,
No I did not,can u help me to find this exaample
--- On Mon, 11/29/10, Chris Peto  wrote:

From: Chris Peto 
Subject: RE: [svg-developers] SVG  tag support in chrome???
To: svg-developers@yahoogroups.com
Date: Monday, November 29, 2010, 2:40 AM







 



  



  
  
  Hi,



Did you not get my example?  I did grouping without Use.



Regards,



Chris



From: svg-developers@yahoogroups.com [mailto:svg-develop...@yahoogroups.com]

On Behalf Of Mr Rauf

Sent: Montag, 29. November 2010 11:17

To: svg-developers@yahoogroups.com

Subject: Re: [svg-developers] SVG  tag support in chrome???



thanx Jacob Beard,

  Is there any other way i attempt groupping in SVG?? i want to move more

then one objects dragging together.. 



--- On Sun, 11/28/10, Jacob Beard mailto:jbeard4%40cs.mcgill.ca> > wrote:



From: Jacob Beard mailto:jbeard4%40cs.mcgill.ca> >

Subject: Re: [svg-developers] SVG  tag support in chrome???

To: "svg-developers" mailto:svg-developers%40yahoogroups.com> >

Date: Sunday, November 28, 2010, 11:11 PM



Use works in Chrome, but not for referencing external resources. This is due

to a bug in upstream Webkit: https://bugs.webkit.org/show_bug.cgi?id=12499



It might be good to vote on this issue on the Webkit bug tracker if you find

it important.



Jake



On Mon, Nov 29, 2010 at 7:38 AM, Mr Rauf mailto:cute_rauf_696%40yahoo.com> > wrote:



>

>

> hi all,

> i am working on the svg grouping.I did it last day but the problem is

that,

> code is not working on google chrome.Does chrome have not some SVG tag

> support.i think problem with svg use tag..

>

> Thanks in advance

>

>  

>



[Non-text portions of this message have been removed]







-

To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com

 

-or-

visit http://groups.yahoo.com/group/svg-developers and click "edit my

membership"

Yahoo! Groups Links



[Non-text portions of this message have been removed]



[Non-text portions of this message have been removed]






 





 



  






  

[Non-text portions of this message have been removed]





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



RE: [svg-developers] SVG tag support in chrome???

2010-11-29 Thread Chris Peto
Hi,

 

Did you not get my example?  I did grouping without Use.

 

Regards,

Chris

 

From: svg-developers@yahoogroups.com [mailto:svg-develop...@yahoogroups.com]
On Behalf Of Mr Rauf
Sent: Montag, 29. November 2010 11:17
To: svg-developers@yahoogroups.com
Subject: Re: [svg-developers] SVG  tag support in chrome???

 

  

thanx Jacob Beard,
  Is there any other way i attempt groupping in SVG?? i want to move more
then one objects dragging together.. 

--- On Sun, 11/28/10, Jacob Beard mailto:jbeard4%40cs.mcgill.ca> > wrote:

From: Jacob Beard mailto:jbeard4%40cs.mcgill.ca> >
Subject: Re: [svg-developers] SVG  tag support in chrome???
To: "svg-developers" mailto:svg-developers%40yahoogroups.com> >
Date: Sunday, November 28, 2010, 11:11 PM

Use works in Chrome, but not for referencing external resources. This is due
to a bug in upstream Webkit: https://bugs.webkit.org/show_bug.cgi?id=12499

It might be good to vote on this issue on the Webkit bug tracker if you find
it important.

Jake

On Mon, Nov 29, 2010 at 7:38 AM, Mr Rauf mailto:cute_rauf_696%40yahoo.com> > wrote:

>
>
> hi all,
> i am working on the svg grouping.I did it last day but the problem is
that,
> code is not working on google chrome.Does chrome have not some SVG tag
> support.i think problem with svg use tag..
>
> Thanks in advance
>
>  
>

[Non-text portions of this message have been removed]



-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
 
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my
membership"
Yahoo! Groups Links

[Non-text portions of this message have been removed]





[Non-text portions of this message have been removed]





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



Re: [svg-developers] SVG tag support in chrome???

2010-11-29 Thread Mr Rauf
thanx Jacob Beard,
  Is there any other way i attempt groupping in SVG?? i want to move more then 
one objects dragging together.. 

--- On Sun, 11/28/10, Jacob Beard  wrote:

From: Jacob Beard 
Subject: Re: [svg-developers] SVG  tag support in chrome???
To: "svg-developers" 
Date: Sunday, November 28, 2010, 11:11 PM

Use works in Chrome, but not for referencing external resources. This is due
to a bug in upstream Webkit: https://bugs.webkit.org/show_bug.cgi?id=12499

It might be good to vote on this issue on the Webkit bug tracker if you find
it important.

Jake

On Mon, Nov 29, 2010 at 7:38 AM, Mr Rauf  wrote:

>
>
> hi all,
> i am working on the svg grouping.I did it last day but the problem is that,
> code is not working on google chrome.Does chrome have not some SVG tag
> support.i think problem with svg use tag..
>
> Thanks in advance
>
>  
>


[Non-text portions of this message have been removed]





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links






  

[Non-text portions of this message have been removed]





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/