[svg-developers] Re: xml to xhtml and svg with xslt

2007-10-17 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, jordangcsnt [EMAIL PROTECTED] wrote: svg:a xlink:href=www.google.comsvg:rect x=460 y=16.64 width=80 height=33.36 fill=white stroke=blue stroke-width=1 //svg:a but it doesn't work in IE and in firefox the cursor changes over the rect but it doesn't

[svg-developers] Re: xml to xhtml and svg with xslt

2007-10-17 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, jordangcsnt [EMAIL PROTECTED] wrote: thanks, I changed it and it works in firefox but in IE doesn't and I need to work in IE :(, someone has any ideas why it doesn't work in IE?? What exactly happens in IE? Do you use the XSLT server-side or client-side?

[svg-developers] Re: onload event is not firing when image added via script

2007-10-11 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, shellshear [EMAIL PROTECTED] wrote: function init() { var img1 = document.createElement(image); img1.setAttribute('height', 100); img1.setAttribute('width', 100);

[svg-developers] Re: array passed from html into svg fails the instanceof Array

2007-05-19 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, lxmachine [EMAIL PROTECTED] wrote: The test has the same result under Firefox and ASV. Anyone has similar problem before? An array object defined in the html document is passed into a function defined in the SVG document. When I run the instanceof

[svg-developers] Re: svg on IE and Firefox

2007-04-08 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, fuli zhang [EMAIL PROTECTED] wrote: http://www.pinyinology.com/ontology/wang2.svg Configure that server to serve the file with HTTP Content-Type as image/svg+xml. Currently you serve it as text/xml which is a generic XML MIME type so that IE simply uses

[svg-developers] Re: [ANN] Batik 1.7beta1 released

2007-03-31 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Cameron McCormack [EMAIL PROTECTED] wrote: The Apache Batik team is proud to announce the long-awaited release of Apache Batik version 1.7beta1, a Java-based toolkit for processing SVG. What is up with the documentation? When I try to download

[svg-developers] Re: HTML-SVG in Firefox

2007-03-29 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Olaf Schnabel [EMAIL PROTECTED] wrote: I have a problem with the HTML-to-SVG communication in Firefox. I made a simple example: function init() { var svgdoc = document.getElementById(mySVG).getSVGDocument(); With Firefox and an object element you

[svg-developers] Re: Dynamically creating xlink

2007-02-23 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, danielhamd [EMAIL PROTECTED] wrote: Also, can someone please explain how I can create a title and description field for these elements on the fly? I can use createElement, but I can't figure out how to set the actual text of the title and description.

[svg-developers] Re: Importing SVG using XMLHttpRequest

2007-02-10 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, James C. Deering [EMAIL PROTECTED] wrote: I saw this thread awhile back and wondered if anybody has any examples of this that do not rely on PHP. Just a simple image switch is what I would like to do. Importing SVG using XMLHttpRequest uses client-side

[svg-developers] Re: examples of xpath with svg

2007-02-06 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, ddailey [EMAIL PROTECTED] wrote: Can anyone point me to some really simple working examples of the use of XPATH in SVG? SVG elements are in the SVG namespace with namespace URI http://www.w3.org/2000/svg so for XPath 1.0 you need a namespace resolver that

[svg-developers] Re: Firefox Problem

2007-02-01 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Fuli Zhang [EMAIL PROTECTED] wrote: When opening following file offline with with Firefox, it looks good but the animation is not working. But when opening it online at my web site, the code is really messy. Firefox so far does not support any SMIL

[svg-developers] Re: Firefox Problem

2007-02-01 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Fuli Zhang [EMAIL PROTECTED] wrote: http://www.pinyinol ogy.com/planning /hanzi7.svg http://www.pinyinology.com/planning/hanzi7.svg is delivered as text/plain, make sure you configure the HTTP server to deliver .svg files as image/svg+xml. - To

[svg-developers] Re: how to set the mouse event in js

2007-01-28 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, xiaoshun_yu [EMAIL PROTECTED] wrote: //created a svg rect£¬then I want to assign a function to //the onmouseover attribute rect.setAttribute(onmousemove, ss()); rect.addEventListener( 'mouseover', function (evt) { ss(); },

[svg-developers] Re: Firefox problems

2007-01-27 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Aaron Gray [EMAIL PROTECTED] wrote: http://www.aarongray.org/Examples/SVG/ScriptedCircle.svg FF does not display a circle, IE7 and Opera do. It must be something pritty basic but I cannot see it :( Use namespace aware methods, SVG elements

[svg-developers] Re: Firefox problems

2007-01-27 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Aaron Gray [EMAIL PROTECTED] wrote: So I need different code for FF as compared to IE and Opera. No, if you script XML with namespaces (like SVG) then use the namespace aware DOM Level 2 methods like getElementsByTagNameNS, createElementNS. Mozilla

[svg-developers] Re: SVG in XHTML file

2007-01-22 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Aaron Gray [EMAIL PROTECTED] wrote: Can SVG be included in a XHTML file without the need for object or embed ? If so how do I do this, could you point me to an example or provide a snippet of code ? Also can this be generated with DOM ? Yes, with

[svg-developers] Re: need a reference to the SVG document to use in pasrXML() ....

2007-01-19 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, rui.ramalho [EMAIL PROTECTED] wrote: appendChild(parseXML(strXML,document)). but i still cant get this document, When you have the event object evt in your event handler then use e.g. evt.target.ownerDocument to get at the SVG document. - To

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

2007-01-18 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, simonshutter [EMAIL PROTECTED] wrote: 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');

[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 g element and loop through the text elements, changing the value of each y attribute as I go. g id=yaxisGroup

[svg-developers] Re: : HTML -- SVG scripting using frameset

2007-01-11 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, ddailey [EMAIL PROTECTED] wrote: I've been consistently unable to get SVG and HTML to talk to one another when the SVG appears in the W3C supported object. object is a problem with IE and the Adobe SVG viewer as for security reasons Adobe disables script

[svg-developers] Re: Batik and external ECMAScript

2007-01-05 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Praveen Nayak [EMAIL PROTECTED] wrote: I am using the Batik viewer inside an applet, and loading an SVG document. I have an ECMAScript method say 'manipulate()' inside the svg file to manipulate the svg content. Applet... !--the applet

[svg-developers] Re: Merry XML !

2006-12-24 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, steltenpower [EMAIL PROTECTED] wrote: http://svglogo.com/xmlmas-tree.svg Is a script element defining functions like PlaceOrnament missing? message: Statement on line 1: Reference to undefined variable: PlaceOrnament - To unsubscribe send a

[svg-developers] Opera quirk where embedded text/xml SVG document is rendered by Adobe SVG plugin

2006-12-23 Thread Martin Honnen
I have run into a strange behaviour with Opera 9 and I am looking for others to test whether with their system the same behaviour occurs. I have a Windows XP system with Opera 9 installed. The Adobe SVG viewer 3 is also installed to render SVG with IE 6. Opera is configured to render SVG with its

[svg-developers] Re: can't see SVG (except in IE)

2006-12-22 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, twt1970 [EMAIL PROTECTED] wrote: http://webcat.fhsu.edu/ksfauna/herps/index.asp? page=speciesspecies_id=420- 872dots=yestributaries=yesisAnura=1map=ks maps and graphs are dynamically generated SVG... ... but they don't show up in Firefox.. That SVG

[svg-developers] Re: FF2 text-anchor bug?

2006-11-09 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Guy Morton [EMAIL PROTECTED] wrote: Yep, go to http://lhr.webtrak-lochard.com/template/index.html in FF1.5, then FF2. Why are you using browser sniffing there to try to detect Firefox by name but ignoring browsers like SeaMonkey which are based on

[svg-developers] Re: Namespace specification

2006-11-02 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, jvoytovich [EMAIL PROTECTED] wrote: Question: When you specify a namespace (i.e. xmlns:svg=http://www.w3.org/2000/svg;), does the browser have to retrieve anything on-line before it will fully process the applicable file? Viewing the above address does

[svg-developers] Re: Batik SVG Viewer Applet

2006-10-30 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Cameron McCormack [EMAIL PROTECTED] wrote: Erik Dahlström: It seemed to work fine in Opera when I modified it locally and reloaded. I think it may be a problem with the global script variable 'chart' being initialized too early. Maybe you can

[svg-developers] Re: Change parent's class style

2006-10-24 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, mmaker21 [EMAIL PROTECTED] wrote: The SVG document has a global onclick event handler, lots of hotspots and simplified looks like this: ... text class =abc a text id=hot x=0 y=0 onclick=testfnmessage/text /a /text ... (I know that there

[svg-developers] Re: proper place to pass extra info.

2006-10-24 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Matthew Ganz [EMAIL PROTECTED] wrote: i have a star symbol and i want to pass extra information in the svg but just don't know where to put it. basically, i have an xOffset and yOffset that i'd like to pass along. where is the best place to do it?

[svg-developers] Re: Animation in Firefox

2006-10-20 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Jerrold Maddox [EMAIL PROTECTED] wrote: Are there any changes I can make in the code so that this animation will work in the current version of Firefox? http://www.personal.psu.edu/faculty/j/x/jxm22/animationcircle3.svg It has worked in earlier

[svg-developers] Re: Can SVG be used with XML 1.1

2006-10-07 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Christoph Anton Mitterer [EMAIL PROTECTED] wrote: Does the SVG standard allow to use it with XML 1.1? i.e. sth. like this: ?xml version=1.0 encoding=UTF-8 standalone=no? You would need 1.1 there I think for XML 1.1. I think in

[svg-developers] Re: script variables visibility in adobe svg plugin under Mozilla

2006-10-04 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, brucerindahl [EMAIL PROTECTED] wrote: Actually it can be done but it is a bit tricky. When I wrote this it was working with Firefox 1.0 with the Adobe SVG beta plugin installed in Firefox. What version of Adobe SVG viewer is that? For the

[svg-developers] Re: script variables visibility in adobe svg plugin under Mozilla

2006-10-03 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, maurizio.migliore [EMAIL PROTECTED] wrote: I have an html page containing 2 embed svg images. All (svg images and html page) contain ecmascript. Under Netscape/Mozilla: Script code in svg files doesn't view global variables defined in html page.

[svg-developers] Re: MSIE + ASV

2006-09-28 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, revelonshift [EMAIL PROTECTED] wrote: Unless in Adobe plugin is required to use internal JS engine, should be used browser's, right? But it is not always true, and I noticed this: In my neverending race for performance I discovered that calling

[svg-developers] Re: evt.target.ownerDocument vs document

2006-09-19 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, David Dailey [EMAIL PROTECTED] wrote: Some time ago I developed the possibly superstitious habit of putting an onload=startup(evt) inside my svg tag; then having function startup(evt) { SVGDocument=evt.target.ownerDocument SVGRoot =

[svg-developers] Re: GetElementById on foreign elements in Firefox/ASV/Opera

2006-09-13 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, krugerboy1971 [EMAIL PROTECTED] wrote: Firefox won't let me use GetElementById on this sort of element: xyz:fruitBats id=bat1/ getElementById is a method of the document and I am sure Firefox lets you use document.getElementById('bat1') just fine,

[svg-developers] Re: Changing stroke color

2006-09-08 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Kurt Martin [EMAIL PROTECTED] wrote: I have been so engrossed about getting this done on time, I just realized that the color is set by a style attribute. Now a totally different quandry: how can I only access reset the color in the style attribute?

[svg-developers] Re: Changing stroke color

2006-09-07 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, zedkineece [EMAIL PROTECTED] wrote: I am using ASV 3, and the 'item' element belongs to Adobe viewer's custom context menu option. There are no errors, and when I inserted your code, there are still no errors and no change in color. I am not able

[svg-developers] Re: Changing stroke color

2006-09-06 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, zedkineece [EMAIL PROTECTED] wrote: I am trying to change stroke colors for particular elements in my SVG with no success. Here is my javascript code: function changeStrokeColor(e) { document.getElementById(MSSA).setAttribute('stroke', e

[svg-developers] Re: Opera and IE: beginElement() and endElement() -- bug?

2006-08-27 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, ddailey [EMAIL PROTECTED] wrote: In IE/ASV, I am able to use animationObject.beginElement() and animationObject.endElement() to start and stop a specific animation. It's more focused than pauseAnimations() and unpauseAnimations(). In order to invoke

[svg-developers] Re: Opera and IE: beginElement() and endElement() -- bug?

2006-08-27 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, ddailey [EMAIL PROTECTED] wrote: I would still think it to be a bug that AnimationElement.setAttribute(end, underfined) (albeit the wrong value of the attribute) causes Opera to crash -- that reaction seems a bit melodramatic. Yes, a crasher is

[svg-developers] Re: XSLT whitespace problem

2006-08-09 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, waynehet [EMAIL PROTECTED] wrote: I think I found the problem. It seems that its coming from a UTF8 BOM (Byte Order Mark). After MS XSLTransform object does its thing, I convert the output stream into a string which is passed as a parameter to a

[svg-developers] Re: modifying SVG in java servlet

2006-08-07 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Nazar [EMAIL PROTECTED] wrote: I have java servlet which is used to modify and output svg file. The svg itself is stored in some sort of database, and before printing it to output I need to add javascript function to it. Which way can I programmatically

[svg-developers] Re: IE tries to download, not display svg file

2006-08-06 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Sean [EMAIL PROTECTED] wrote: I was trying to bring up my svg on a friends computer last night, and IE would only try to download the file. It is in PHP, but on my home computer and work computer it works fine. I tried changing all the permissions,

[svg-developers] Re: XSLT whitespace problem

2006-08-05 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, waynehet [EMAIL PROTECTED] wrote: I'm having a little trouble with a svg document created in Illustrator that I need to adjust to reflect some external data. I'm applying a XSL transformation in .NET to update the node attributes (particularly fill

[svg-developers] Re: XSLT whitespace problem

2006-08-05 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Martin Honnen [EMAIL PROTECTED] wrote: then an ASP.NET 1 page that use XslTransform to do an identity XSLT transformation on that SVG document and output the result to the browser http://www34.brinkster.com/libertydevelop/svg/test2006080501.aspx

[svg-developers] Re: XSLT whitespace problem

2006-08-05 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, waynehet [EMAIL PROTECTED] wrote: Hi all, I'm having a little trouble with a svg document created in Illustrator that I need to adjust to reflect some external data. I'm applying a XSL transformation in .NET to update the node attributes (particularly

[svg-developers] Re: inherit id?

2006-08-03 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, csorba_edith [EMAIL PROTECTED] wrote: I have a question about defining id's for multiple svg features. I have quite a few paths, and I would like to group them and display the same Id when I move the mouse over one of the features. I.e. g id=x.. path

[svg-developers] Re: getSVGDocument works locally but not on server

2006-07-18 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, jack2wsx [EMAIL PROTECTED] wrote: embed name='EmbedRPF' type='image/svg+xml' id='EmbedRPF' frameborder=0 width=100% height=100% src='RPF1.svg' /embed But when I insert the following js to get a handle on the SVG document: var DocRPF =

[svg-developers] Re: getBBox in Firefox

2006-07-11 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, chmavrog [EMAIL PROTECTED] wrote: is something wrong with getBBOX in FF? the following code var tmpWdth=parseInt(this.nameElement.getBBox().width)+10; produces the following message Error: [Exception... Component returned failure code: 0x80004005

[svg-developers] Re: FF equiv of top

2006-07-10 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Sayed Arian Kooshesh [EMAIL PROTECTED] wrote: With i.e. you use top to get to the browser. How do you do similarly in FF? If you have an SVG document embedded in a HTML document with the embed element or the object element or the iframe element then with

[svg-developers] Re: JavaScript Over SVG in FF1.5

2006-07-10 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Fernando Kogik [EMAIL PROTECTED] wrote: What I have is this: i have an svg image with no script tags inside and call a lot of JavaScript function in events like onmouseover, onmouseout and so on. All these functions are in a separate .js file that is

[svg-developers] Re: How to remove default offset in the rendered svg images --- Plz Help

2006-07-05 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Shamjith K V [EMAIL PROTECTED] wrote: When I viewed the below rectangle.svg in squiggle, the rendered image is displayed after an offset from left. Can any body please help me to remove this offset ? Does preserveAspectRatio=none e.g. svg width=102400

[svg-developers] Re: images in SVG

2006-07-04 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, arnorro [EMAIL PROTECTED] wrote: So I am looking for a way to really integrate the binary data in the SVG. I imagine something like a CDATA section which I link in the image element. To make it even worse, this solution should work with Gecko, Adobe SVG

[svg-developers] Re: Save modified SVG file permanently

2006-07-02 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Baris YILMAZ [EMAIL PROTECTED] wrote: I'm using Adobe Viewer. If you put a PI (processing instruction) of the form ?AdobeSVGViewer save=snapshot? in your SVG document (before the root element) then the Adobe SVG viewer when using the Save as functionality

[svg-developers] Re: Changing inner SVG element attributes?

2006-07-01 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Darryl Watson [EMAIL PROTECTED] wrote: I have an SVG file with an inner SVG element with its own coordinate system and elements. I want to change the inner SVG element viewBox or translate/scale values in IE and ASV 3.03, but the viewer seems to

[svg-developers] Re: Help with dynamic inline SVG

2006-06-30 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, pothoven [EMAIL PROTECTED] wrote: Unfortunately, the embed option for IE really isn't an option since I have no file to point the src to as the SVG was generated dynamically. Since the embed tag isn't part of the w3c spec and doesn't support inline

[svg-developers] Re: getURL/XMLHTTP

2006-06-29 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Sean [EMAIL PROTECTED] wrote: Do you actually append it into an embedded svg doc other than the svg doc you use to get your segment? Both my calling doc and the doc associated with the parseXML are svg. I just can't get it to append into a third svg

[svg-developers] Re: Help with dynamic inline SVG

2006-06-29 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, pothoven [EMAIL PROTECTED] wrote: Instead of describing my problem in this post, I've tried to describe my problem on this page http://pothoven.blogspot.com/2006/06/help-with-dynamic-inline-svg.html

[svg-developers] Re: Post URL in FireFox

2006-06-21 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, chmavrog [EMAIL PROTECTED] wrote: 1.If i want to send svg data on a server-side script, in order to save them with XMLHttpRequest in FF1.5, do i have to use POST in the .open method for XMLHttpRequest object or GET is enough?(TRUE -POST must be

[svg-developers] Re: Patterns not shown...

2006-06-11 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Baris YILMAZ [EMAIL PROTECTED] wrote: I have the below file, which I found in a tutorial. But my browsers don't show the pattern. I just see my shape. But, In IE I see a fully black painted ellipse, not any patterns filled.Could anyone tell me what is the

[svg-developers] Re: interactive svg

2006-06-09 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, varghen_shiji [EMAIL PROTECTED] wrote: I want to know how i can have svg content on a web page which can interact with a backend server program like perl, where in svg content on the webpage becomes the front end. Script in SVG documents can make HTTP

[svg-developers] Re: Sending data to server

2006-06-07 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, chmavrog [EMAIL PROTECTED] wrote: I want to make network requests from a standalone svg document for FF and IE6/ASV3.03.Is there a wrapper object somewhere for the 2 situations? I think Andreas has a wrapper library, check the archives of this group.

[svg-developers] Re: Sending data to server

2006-06-06 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, chmavrog [EMAIL PROTECTED] wrote: if i want to send the dynamically created elements inside a g element,using postURL-getURL (IE6ASV3) and XMLHtTPRequest (FF) does my svg main page have to be embed in an HTML page? or it can be used as a standalone

[svg-developers] Re: escape characters in text

2006-05-30 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, bstuycke [EMAIL PROTECTED] wrote: textlt; 90%/text produces a text lt; 90% in asv, where I expected 90%. How do I get a less-than symbol in a text node to display correctly ? Is this a bug of asv ? No problems here with Adobe SVG viewer 3 and

[svg-developers] Re: How to close the opened window

2006-05-23 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, chmavrog [EMAIL PROTECTED] wrote: The svg file are not embed in HTML page.I am running them directly to the browser.Is that a problem? Certainly not with browser having native SVG support like Firefox 1.5 or Opera 9. With IE/Windows and Adobe SVG viewer

[svg-developers] Re: Help with saving dynamically content

2006-05-20 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, chmavrog [EMAIL PROTECTED] wrote: I am coding for IE6. and ASV3.0 in Apache Web server. I have a group element used as a canvas to draw dynamically shapes using javascript and SVG DOM. Now how can i save the content inside the group element in order

[svg-developers] Re: printNode for all browsers

2006-05-18 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Olaf Schnabel [EMAIL PROTECTED] wrote: maybe someone of you has a solution for my problem. I currently using the command printNode, which only works with Adobe SVG viewers. Has someone an idea how to integrate the same functionality in the

[svg-developers] Re: Problems walking the DOM in an HTML document with an embedded SVG document

2006-05-13 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, mikh2161 [EMAIL PROTECTED] wrote: for (var i = 0; i document.getElementById('TopView').getSVGDocument ().documentElement.childNodes.length; i++) alert(document.getElementById('TopView').getSVGDocument ().documentElement.childNodes[i]) The

[svg-developers] Re: inline svg (opera) transparency against background?

2006-05-10 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Andre M. Winter - Carto.net [EMAIL PROTECTED] wrote: but the SVG isn't transparent against background in Opera (v8.54). any idea to achieve transparency here? Waiting for Opera 9 could help :) as with a Opera 9 build the transparence is there.

[svg-developers] Re: Good SVG progress in Opera 9

2006-05-07 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Charles McCathieNevile [EMAIL PROTECTED] wrote: As we get towards finishing our SVG implementation for Opera 9 we welcome feedback on problems you find. Jonathan Watt has some test cases on getScreenCTM here http://jwatt.org/svg/tests/ which as far as I

[svg-developers] Re: Good SVG progress in Opera 9

2006-05-07 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Richard Gnyla [EMAIL PROTECTED] wrote: Martin I see some things have improved and scripts seem to be working better now. I see hanging, mathematical, baseline text has still not been fixed, Will this be done by the new release? Why are you

[svg-developers] Re: SVG Scriting Across FF and IE. FAQ

2006-05-03 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, chmavrog [EMAIL PROTECTED] wrote: -Inline SVG is currently supported only in FF,which supports XHTML, and not in IE6 + ASV. My answer(True) Opera 8 and Opera 9 beta also support mixed namespace XML documents with XHTML and SVG elements. As for IE and

[svg-developers] Re: SVG Scriting Across FF and IE. FAQ

2006-05-03 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, chmavrog [EMAIL PROTECTED] wrote: is there a link that you can sent me in order to see this for IE+ASV Recent example posted here on the list is for instance http://members.optusnet.com.au/khsoh/0009.xhtml See also http://wiki.svg.org/Inline_SVG

[svg-developers] Re: Creating new elements in inlined SVG within IE

2006-05-02 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, lpmlabs9 [EMAIL PROTECTED] wrote: With the embed vs object question that continues to surface, why isn't inlining ever proposed? With IE and Adobe SVG viewer, if you inline the SVG then you lose interactivity, that is script event handlers in the SVG do

[svg-developers] Re: to display embeded SVG in Firefox

2006-04-29 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, talkli [EMAIL PROTECTED] wrote: i embeded a svg-file into a html with embed src= type=image/svg+xml .../ and opened the html-file with firefox. But the embeded svg-file couldn't be shown. A popup window came to ask which program i want to use to open

[svg-developers] Re: to display embeded SVG in Firefox

2006-04-29 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, talkli [EMAIL PROTECTED] wrote: i have already checked. i am using Firefox 1.5.0.2 and the value of svg.enabled is true. I have only problem with displaying the svg with embed tag in firefox. Check whether any of the hints in

[svg-developers] Re: ActiveXObject inside SVG?

2006-04-26 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Jim Ley [EMAIL PROTECTED] wrote: Martin Honnen [EMAIL PROTECTED] wrote Although the Adobe SVG viewer by default with IE/Win uses the Microsoft JScript engine it is not possible to use ActiveXObject. You can create one like this: top.svgWind

[svg-developers] Re: Dynamic rebuild of HTML embed of SVG -- two questions

2006-04-23 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Doug Schepers [EMAIL PROTECTED] wrote: If seems like you're creating the div and emed again and again. Why not just change the src attribute of the existing embed? This will be faster anyway, and works across browsers. Also, change the src with blah.src

[svg-developers] Re: ActiveXObject inside SVG?

2006-04-22 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, os_vlan [EMAIL PROTECTED] wrote: I'm wondering how to create ActiveXObject inside SVG file. I'm building a GUI using SVG and I want to create Ajax request that requires to create ActiveXObject in IE (http_request = new

[svg-developers] Re: to manipulate embeded-SVG in HTML with AJAX?

2006-04-20 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, talkli [EMAIL PROTECTED] wrote: i embedded a SVG into a HTML-page. Now the question, how can the javascript-functions in the html-file manipulate the embedded svg? That depends on how exactly the SVG is embedded. Have you used the embed element or the

[svg-developers] Re: to manipulate embeded-SVG in HTML with AJAX?

2006-04-20 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, talkli [EMAIL PROTECTED] wrote: I used the embed element. And how can i manipulate it with javascript in html? See the SVG wiki http://wiki.svg.org/SVG_and_HTML http://wiki.svg.org/Inter-Document_Communication and

[svg-developers] Re: double space character in FF 1.5

2006-04-19 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, campin_b [EMAIL PROTECTED] wrote: Is there a way to make the double space working in FireFox 1.5. ex: A B C #32; and nbsp; are not working nbsp; is an entity reference defined for HTML and XHTML but not SVG but you can simply use #160; ( # 1 6 0 ;)

[svg-developers] Re: An SVG Tutorial

2006-04-17 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Richard Gnyla [EMAIL PROTECTED] wrote: Also I am having problem with accessing SVG ID elements, some work in Opera and some dont and I dont understand why. Does that mean that document.getElementById('someId') fails to find an element in an SVG

[svg-developers] Re: Resizing an HTML embed with SVG src

2006-04-14 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, ddailey [EMAIL PROTECTED] wrote: I got rather stuck with what I thought should have been fairly easy. I wanted to put an SVG object in a web page and then resize it upon loading the web page and maybe manipulate it again later, as well.

[svg-developers] Re: FF and resetting an image's xlink:href attribute

2006-04-13 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Guy Morton [EMAIL PROTECTED] wrote: I'm seeing a weird problem. In ASV, if I reset an image's xlink:href attribute the image updates to display the new image. In FF the old image disappears, but the new one doesn't appear in its place. Have I just

[svg-developers] Re: attribute 'rel'

2006-04-09 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Darrel Yoon [EMAIL PROTECTED] wrote: there is a attribute called rel in HTML. usually witten in this way,a href=... rel=.../a I want to know what is this for and what is alternative attribute for SVG for this rel. The rel attribute is defined

[svg-developers] Re: Problem with Firefox display of SVG object

2006-04-07 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Alex Amies [EMAIL PROTECTED] wrote: I now have a live SVG Demonstration of Action Potentials in the Nervous System http://www.medicalcomputing.net/action_potentials2.html. If anyone notices any problems or has any suggestions please let me know. Looks

[svg-developers] Re: Using SVG icon for linking!

2006-04-06 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Salman [EMAIL PROTECTED] wrote: I have created an SVG button and embedd it inside the xhtml. I want to link this with url in a so that when user click on this button he is redirected to the web page a is referring to. Button is displayed but it thumnail

[svg-developers] Re: Demonstration of SVG Javascript Analogue Clocks

2006-04-02 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Kam-Hung Soh [EMAIL PROTECTED] wrote: Here's a Web page showing SVG-drawn analogue clocks animated by Javascript. See: http://members.optusnet.com.au/~khsoh/000d.xhtml As for writing CSS selectors to match elements in a certain namespace you can do

[svg-developers] Re: yet another browser difference (yabd) (abadoo)

2006-03-31 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, David Dailey [EMAIL PROTECTED] wrote: In IE (ASV ) it has been rewritten for me by the browser: svg onload=startup(evt) xmlns:xlink=http://www.w3.org/1999/xlink; xmlns=http://www.w3.org/2000/svg; preserveAspectRatio=xMidYMid meet

[svg-developers] Re: Inline SVG FF Mac problem

2006-03-30 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, drlippman [EMAIL PROTECTED] wrote: I'm hoping someone might be able to help with this problem. I'm trying to create dynamic inline SVG in FireFox. The code below works just fine in FF-Windows, but the text won't display in FF- Mac. Any other type of

[svg-developers] Re: relative positioning

2006-03-28 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Omar Abo-Namous [EMAIL PROTECTED] wrote: i'm trying to position some elemnts relative to the svg-window. I want to display some buttons on the far side of a window. I thought i could just do this: path d=M 92%,2% 98%,2% 95%,4% / for a triangle in

[svg-developers] Re: Using JS to Access An Embedded SVG

2006-03-07 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Fernando Kogik [EMAIL PROTECTED] wrote: I have this situation: one SVG file (embed.svg) embeds another SVG file ( test.svg) like above svg version=1.1 image id=TEST xmlns:xlink=http://www.w3.org/1999/xlink; onmouseover=PE(evt) onmouseout=AP(evt)

[svg-developers] Re: How to import .js files into SVG

2006-03-02 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Jeroen Vanattenhoven [EMAIL PROTECTED] wrote: Is it possible to load .js files via js-code? With this I mean: is it possible to create packages like in Java and use them with something like import io.gis.something? If not, is there an alternative for

[svg-developers] Re: Using External File in SVG

2006-03-01 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Dushi.. Dushyanth [EMAIL PROTECTED] wrote: So, I tried storing this data as a separate xml file and parse using the following JavaScript. (I can't see any facility in JS to open a text file). var xmlDoc = new ActiveXObject(Microsoft.XMLDOM); The

[svg-developers] Re: a SVG document within another one

2006-03-01 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, omzeta [EMAIL PROTECTED] wrote: I have 2 SVG files (arc1.svg, arc2.svg). I would like include the arc2.svg inside of arc1.svg. How to do this? The image element allows you the inclusion, http://www.w3.org/TR/SVG11/struct.html#ImageElement e.g. you can

[svg-developers] Re: Getting the bounding box of a path

2006-03-01 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Sayed Arian Kooshesh [EMAIL PROTECTED] wrote: can you show me an example? Here is a simple example ?xml version=1.0 encoding=UTF-8? svg xmlns=http://www.w3.org/2000/svg; titlebounding box example/title script type=text/ecmascript![CDATA[ function

[svg-developers] Re: Display use element in adobe svg viewer

2006-02-28 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, sent1729 [EMAIL PROTECTED] wrote: I am trying to diplay use element in abobe svg viewer, but unable to do so. g id=Pointuse x=606 y=563 xlink:href=file:///c:/symbollib.svg#circle//g Have you tried using an embedded symbol first e.g. use

[svg-developers] Re: bounding box

2006-02-25 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Bruno Marquié [EMAIL PROTECTED] wrote: the first alert popup displays 2/0/0 and the second 1/40/120. why? I And can you explain me also this order..; why bboxSize('2') is called before bboxSize('1') ? g id=1 onclick=bboxSize('1') use

  1   2   >