Is there a SVG to MXML Converter? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T03:48:29Z http://stackoverflow.com/feeds/question/702557 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/702557/is-there-a-svg-to-mxml-converter 1 Is there a SVG to MXML Converter? Karthik 2009-03-31T18:58:54Z 2009-04-06T13:29:49Z <p>Hi,</p> <p>I'm trying to use an SVG file in my Flex app - but it seems the best way to do that is to convert it to MXML. However, I cannot find an SVG to MXML converter. There seem to be a number of SVG to XAML converters (for Silverlight/C#), but I can't find anything analogous for Flash/Flex.</p> <p>Any help would be appreciated.</p> <p>Thanks, Karthik</p> http://stackoverflow.com/questions/702557/is-there-a-svg-to-mxml-converter/702589#702589 2 Answer by Osman for Is there a SVG to MXML Converter? Osman 2009-03-31T19:08:59Z 2009-03-31T19:08:59Z <p>You should be able to <a href="http://www.adobe.com/devnet/flex/quickstart/embedding%5Fassets/#EmbeddingSvgFiles" rel="nofollow">Embed the SVG directly</a>, without a converter.</p> http://stackoverflow.com/questions/702557/is-there-a-svg-to-mxml-converter/703295#703295 1 Answer by evilpenguin for Is there a SVG to MXML Converter? evilpenguin 2009-03-31T22:15:35Z 2009-03-31T22:15:35Z <p>Well, the SVG is an XML file, basically. So if you want to import it at runtime, you could read it as an XML file and then use the AS3 drawing API to render it. Check out <a href="http://code.google.com/p/as3svgrendererlib/" rel="nofollow">this ActionScript 3 SVG renderer on Google Code</a>!</p> http://stackoverflow.com/questions/702557/is-there-a-svg-to-mxml-converter/721442#721442 1 Answer by Harit K for Is there a SVG to MXML Converter? Harit K 2009-04-06T13:29:49Z 2009-04-06T13:29:49Z <p>yes, there are few libraries but i haven't come across any mature one- - <a href="http://code.google.com/p/as3svgrendererlib/" rel="nofollow">http://code.google.com/p/as3svgrendererlib/</a> - <a href="http://www.degrafa.org/" rel="nofollow">http://www.degrafa.org/</a> - <a href="http://code.google.com/p/svg-viewer/" rel="nofollow">http://code.google.com/p/svg-viewer/</a> - <a href="http://labs.zavoo.com/?p=65" rel="nofollow">http://labs.zavoo.com/?p=65</a></p>