[svg-developers] Re: SVG in SVG - external CSS styling problem - Roberts response

2012-08-27 Thread akcindalch
I can have html in html (iframes) and even modify outer or inner html with javascript included/loaded by these pages.. I know that iframes aren't recomended, but they're still enabled.. I just don't understand , why I can't have simillar feature in svg, OR CAN I?? (It haven't to be tag, I just

Re: [svg-developers] Re: SVG in SVG - external CSS styling problem - Roberts response

2012-08-27 Thread Marty Sullivan
Well I'm not sure what you're trying to do in your SVG, but you could load all of the SVG docs into the background of one HTML page and then have one blank SVG doc to place the elements you're trying to use with a script in the HTML. I've never tried that but it's easy enough to get one SVG and HTM

[svg-developers] Re: SVG in SVG - external CSS styling problem - Roberts response

2012-08-27 Thread akcindalch
I wanted to avoid using HTML.. I wanted just "include/embed" one SVG into another and comunicate between them. For example: I have main SVG with some graphics. When I right-click on something, second SVG 'colorPicker' should appear - as context menu. Then when I click on some color in context me

[svg-developers] SVG & Python

2012-08-27 Thread Francis Hemsher
I needed sophisticated math to generate SVG polygons. Javscript just didn't have the Math handling I required. Therefore, I decided to give Python a try. It works just dandy. I registered Python as a scripting language at the server. I can then generate the data to build SVG either on the server

[svg-developers] Re: SVG in SVG - external CSS styling problem - Roberts response

2012-08-27 Thread Robert Longson
You could use a and put the content in as a child of that. It won't work in IE9 or IE10 though as that doesn't support but it will on other browsers. Robert. --- In svg-developers@yahoogroups.com, "akcindalch" wrote: > > I wanted to avoid using HTML.. I wanted just "include/embed" one SVG i

Re: [svg-developers] Re: SVG in SVG - external CSS styling problem - Roberts response

2012-08-27 Thread Marty Sullivan
I know what you want to do but it just seems as though it's not possible right now. I think embedding them in the background of an HTML page is your best bet. The HTML could be as minimal as a script and your single visible SVG embed... you'd never even know the HTML was there. On Mon, Aug 27, 201