Re: [svg-developers] Re: parseXML and accessing nodes.

2005-04-07 Thread Sean
PROTECTED] wrote: I added a while loop that throws me for a loop, no pun intended. svg id=svg g id=state /g g id=cntry g id=sean /g /g g id=nps /g g id=wtr /g /svg //parse content of the XML format to the variable node var node = parseXML(data.content

Re: [svg-developers] Re: parseXML and accessing nodes.

2005-04-08 Thread Sean
There is still one thing nagging me about parseXML. Below is a while loop that should work, at least as far as I know, but doesn't. The alerts display the contents of the node, thank you ctl271. If I comment out myGeometryToAdd.appendChild(child);, all of the child nodes in the loop and

Re: [svg-developers] Re: parseXML and accessing nodes.

2005-04-08 Thread Sean
){ nodeArray[i] = child; i=i+1; } child = child.nextSibling; } for (x=0; xi; x++) { theID = nodeArray[x].getAttributeNS(null,id); myGeometryToAdd = document.getElementById(theID+1); myGeometryToAdd.appendChild(nodeArray[x]); } Sean wrote: There is still one thing

Re: [svg-developers] Re: parseXML and accessing nodes.

2005-04-08 Thread Sean
); myGeometryToAdd = document.getElementById(theID+1); myGeometryToAdd.appendChild(nodeArray[x]); } Sean wrote: There is still one thing nagging me about parseXML. Below is a while loop that should work, at least as far as I know, but doesn't. The alerts display the contents

Re: [svg-developers] div CSS border attribute

2005-04-14 Thread Sean
I posted a few days ago a question about there being about a 2px or 3px: padding of a border around an embeded svg, but haven't gotten any responses. It seems to be a CSS issue. Anyway, below is the code snipet. Any insight would be appreciated. Thanks. style type=text/css #border

Re: [svg-developers] Re: div CSS border attribute

2005-04-15 Thread Sean
What was I thinking?!? Thanks. Holger Will wrote: Andreas Neumann wrote: you can use body style=margin:0; sadly this still doesnt solve the problem. but if you use your style on the embedd directly ( not the div ) the problem is gone... style type=text/css #border

Re: [svg-developers] Urgent: Replacing current SVG with new one via Java Script

2005-04-15 Thread Sean
You'll need php, pearl or a similar language. If php, in your html you would have embed name=graph width=800 height=400 src=svg.php?oid=1style=float: leftalign=left / The js would look something like this. theSVC=window.document.embeds[0];

Re: [svg-developers] appendChild question

2005-04-22 Thread Sean
= svgdoc.importNode(child, true); myGeometryToAdd = theMap.getElementById(theID+1); myGeometryToAdd.appendChild(nodeToImport); } child = childSibling; } Robin Berjon wrote: Sean wrote: As a test I added a name variable to each myGeometryToAdd node, and I am able to correctly retrieve it in each

[svg-developers] appendChild question

2005-04-22 Thread Sean
Below I have two almost identical js loops. The first works, and the second does too right up to the point of appending the child. The first is embedded in my map, the second in the legend. The second is used to append the map when the user clicks on a layer that has not yet been loaded.

Re: [svg-developers] appendChild question

2005-04-23 Thread Sean
Does parseXML() need to run embedded with the SVG? I can't get parseXML() to work from an external script. Robin Berjon wrote: Sean wrote: As a test I added a name variable to each myGeometryToAdd node, and I am able to correctly retrieve it in each case. Am I not allowed to append one

Re: [svg-developers] appendChild question

2005-04-23 Thread Sean
Correction, getURL(), not parseXML(). Sean wrote: Does parseXML() need to run embedded with the SVG? I can't get parseXML() to work from an external script. Robin Berjon wrote: Sean wrote: As a test I added a name variable to each myGeometryToAdd node, and I am able

Re: [svg-developers] appendChild question

2005-04-25 Thread Sean
); } child = childSibling; } Robin Berjon wrote: Sean wrote: The impportNode() method is the way to go, I think. I get an error stating that it is Not Implemented. Oh right, I'd forgotten that big ugly bug in Adobe's implementation. Since you seem to be using parseXML(), use its

Re: [svg-developers] Re: GoSVG.NET (Renesis SVG Viewer) has gone online!

2005-05-04 Thread Sean
Will this replace the Adobe plugin? Alexander Adam wrote: hi, Looks promising. Any hope to see a public beta at some point prior to the actual release? I'm most interested in a Mac version by the way. Yes, the version shown at the SVGOpen2005 will be a beta which should go public

[svg-developers] JavaScript embeded SVG

2005-06-21 Thread Sean
is the closing }. function back(){ parent.document.getElementById(SvgMap).setSrc(index2.svg); } I need to reference the embedded svg the reset the svg, which is in the parent document. Any ideas as to what is going on? Thanks. Sean - To unsubscribe send a message to: [EMAIL PROTECTED

Re: [svg-developers] Re: JavaScript embeded SVG

2005-06-21 Thread Sean
(SvgMap); // look at what you retrieved alert( svgmap ); if( svgmap != null ) { svgmap.setSrc(index2.svg); } } Alastair --- In svg-developers@yahoogroups.com, Sean [EMAIL PROTECTED] wrote: Below is a function in some JS that is referenced in the embeded SVG file

Re: [svg-developers] Re: JavaScript embeded SVG

2005-06-22 Thread Sean
@yahoogroups.com, Sean [EMAIL PROTECTED] wrote: --- Alert --- [object] --- OK --- Then gives me the error, then sets the Src anyway. Alastair Fettes wrote: try this to debug it: function back

Re: [svg-developers] Re: JavaScript embeded SVG

2005-06-23 Thread Sean
something in there? I haven't worked much with setSrc but we should be able to get to the bottom of this... Alastair --- In svg-developers@yahoogroups.com, Sean [EMAIL PROTECTED] wrote: The second alert never appears after the error. It occurs when the it sets the Src. It dose reset the Src

Re: [svg-developers] The Future of SVG

2005-06-28 Thread Sean
However, the FireFox browser will soon have native SVG support. We've been hearing this for a long time. Doug Schepers wrote: Hi, Sylvain- Until recently, I would have agreed with you. However, the FireFox browser will soon have native SVG support. I doubt that IE7 will, because Microsoft

Re: [svg-developers] The Future of SVG

2005-06-28 Thread Sean
Of Sean | Sent: Tuesday, June 28, 2005 11:25 AM | To: svg-developers@yahoogroups.com | Subject: Re: [svg-developers] The Future of SVG | | However, the FireFox browser will soon have native SVG support. | | We've been hearing this for a long time. | - To unsubscribe send a message to: [EMAIL

[svg-developers] onKeyDown

2005-07-05 Thread Sean
Can SVG capture key down and up events? I'm using onKeyDown=aKeyDown();, but it doesn't seem to want to work. It works when I use it in the body of the html. Thanks. Sean - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers

Re: [svg-developers] onKeyDown

2005-07-05 Thread Sean
Either my cash was causing the problem or changing to all lower case like onkeydown=aKeyDown(); worked, but either way. problem solved. Sean wrote: Can SVG capture key down and up events? I'm using onKeyDown=aKeyDown();, but it doesn't seem to want to work. It works when I use

[svg-developers] generalization problems

2005-07-13 Thread Sean
I have an issue that has nagged me, but until now, I have always found ways around it. I have two identical shapes, same pixel dimensions and same precision, 4 decimal places. One is in UTM coordinates with the upper left corner of the view box set at 510441 -4300624, and the other shifted

Re: [svg-developers] generalization problems

2005-07-14 Thread Sean
; fax: +31-(0)534874335 _ From: svg-developers@yahoogroups.com on behalf of Sean Sent: Wed 13/07/2005 19:59 To: svg-developers@yahoogroups.com Subject: [svg-developers] generalization problems I have an issue that has nagged me

Re: [svg-developers] generalization problems

2005-07-15 Thread Sean
from shape files. Ironically, file size was the same. Thought maybe some people would find this interesting. Sean Ronan Oger wrote: Sean, This looks like a browser issue. Maybe you should take it up with Adobe. Ronan On Wednesday 13 July 2005 17:59, Sean wrote: I have an issue that has

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

2005-07-19 Thread Sean
Cool, you beat me to it. Kerry Coffin wrote: As an alternative, how about (using the example): !DOCTYPE svg [ !ENTITY atr M-10,370 c470,-330 500,300 500,400 !ENTITY dtr M-10,373 c350,-280 700,120 900,40 !ENTITY btr M-10,360 c350,-280 700,120 900,40

[svg-developers] JPEG 2000

2005-08-10 Thread Sean
1. Sean 8/10/2005 | 5:28 pm http://www.gosvg.net/?p=22#comment-119 Will jpeg 2000 be supported? 2. Renesis Team http:// 8/11/2005 | 2:18 am http://www.gosvg.net/?p=22#comment-120 @Ivar Yes the binary xml works like the standard DOM3. Yes it’ll

Re: [svg-developers] Renesis Viewer and SVG Open 2005

2005-08-16 Thread Sean
Here's a blog. http://www.understandingxml.com/ He has not posted yet, but says he would give daily updates. Alastair Fettes wrote: So I can see by the schedule for the conference that the Renesis viewer was to be presented today, just a little while ago. Anyone have some up to date news on

[svg-developers] Set Focus

2005-09-01 Thread Sean
is a pain, because now the user must click on the svg app to regain focus. I've tried parent.document.SvgMap.focus();, but it doesn't seem to work. Any suggestions? Thanks. Sean Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job

[svg-developers] SVG PHP

2005-09-01 Thread Sean
JScript runtime error --- Object required line: 38, column: 4 --- OK --- It doesn't seem like it should change to me. Any thoughts? Thanks. Sean Yahoo! Groups Sponsor

Re: [svg-developers] Re: Set Focus

2005-09-02 Thread Sean
I thought of that too and have been working in that direction instead. Thanks. Francis Hemsher wrote: Hi Sean, Someday this loss of focus may be fixed. I think the best way to handle the problem at this time is to place those alerts and the required response within the svg image, keeping

[svg-developers] stroke-dasharray

2005-09-20 Thread Sean
I'm using this, stroke-dasharray=1% 0.5%, which works fine in other areas of my SVG, but for some reason, I am now getting a solid black line between the dashes. Has any one had this problem? Thank you. Sean Yahoo! Groups Sponsor ~-- Get Bzzzy

[svg-developers] preserveAspectRatio='none' and text

2005-09-20 Thread Sean
Is there a way to stretch the the x and y axis without distorting the text? Thank you. Sean Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/1U_rlB

Re: [svg-developers] Re: load imagery TerraServer

2005-11-30 Thread Sean
Good idea, thanks. In an ideal world, it would be easy. For now, whatever works. Sean Andreas Neumann wrote: I don't have a real solution, unfortunately, but the same problem. Maybe you can display a text stating image loading ... behind the image, which is then covered by the image, once

Re: [svg-developers] Re: load imagery TerraServer

2005-12-01 Thread Sean
I implemented your recommendation, and something that did not occur to me initially is that all the svg graphics are in front. Like you said, not very elegant, but at least the user knows something is happening. If anyone has other ideas, I'm all ears...or maybe eyes. Thanks. Sean Andreas

Re: [svg-developers] Re: load imagery TerraServer

2005-12-01 Thread Sean
of big deal with lines, but polygons will mess things up. Sean Andreas Neumann wrote: I don't understand your problem here - what exactly do you mean by are in front? Do you have a problem with document order? You can always reorder the elements and make sure that the image covers the text, using

Re: [svg-developers] SVG TO PDF

2006-01-05 Thread Sean
out to a pdf. All I can say is that it can be done. Sean Petronel Laviniu MALUTAN - Talente.ro wrote: I would like to read more about how could I create with PHP, a PDF file based from a SVG one ? Could be SVG somehow prepared for printing directly ? How do you print it if is a going

Re: [svg-developers] Re: SVG and Web Mapping Servers

2006-01-25 Thread Sean
Here are three good resources that are related. http://www.svgopen.org/2005/papers/abstract_williams_yosemite_national_park/#S1. http://www.carto.net/williams/yosemite/ http://www.carto.net/papers/svg/postgis_geturl_xmlhttprequest/ Ben wrote: Right, So let me see if I've got it: The database

Re: [svg-developers] Re: Set Mouse Cursor Position?

2006-01-27 Thread Sean
and inserts the text into the svg. WordWrap2.zip has the text in the svg document already. Both handle paragraphs. The second example I flagged each paragraph with -pA-. The php version has the advantage of not having to flag paragraphs. Sean -- I'd rather have a bottle in front of me

[svg-developers] WordWrap

2006-01-27 Thread Sean
Oops! Sean wrote: I have just uploaded two word wrap examples. They are inspired by Antoine Quint's tutorial at http://www.xml.com/pub/a/2002/09/11/quint.html?page=1. The tutorial was overkill for, so I tried to simplify it...it's simpler to me. WordWrap.zip is a php version that reads

[svg-developers] WordWrap scaling problem

2006-01-28 Thread Sean
. Any insight would be most appreciated. Thank you. Sean Sean wrote: Sean wrote: I have just uploaded two word wrap examples. They are inspired by Antoine Quint's tutorial at http://www.xml.com/pub/a/2002/09/11/quint.html?page=1. The tutorial was overkill for, so I tried to simplify

[svg-developers] javascript keyevents

2006-02-01 Thread Sean
is the active window. Without html, all the listner and event triggers must be in the svg, which means if the cursor is not over the svg document, nothing can happen, even if the browser is active. Is there a way around this without embedding into html? Thanks! Sean - To unsubscribe send

[svg-developers] Edit Text

2006-02-01 Thread Sean
I've just uploaded a modified version of Kevin Lindsey's TextBox. It has a blinking cursor, backspace, ability to insert characters, and use of left and right arrow keys. -- I'd rather have a bottle in front of me, than a frontal lobotomy. -- Tom Waits - To unsubscribe send a message

Re: [svg-developers] Edit Text

2006-02-02 Thread Sean
I just uploaded a new version that includes Delete, Home, and End as TextBox.zip. Sean wrote: I've just uploaded a modified version of Kevin Lindsey's TextBox. It has a blinking cursor, backspace, ability to insert characters, and use of left and right arrow keys. -- I'd rather have

Re: [svg-developers] Re: Text Click get Index

2006-02-03 Thread Sean
Thanks for the tip. I did find a different way of doing it, I hope that it is compatible FF 1.5. I implement it in my latest version of textBox.zip and uploaded it. I worked a few bugs also. Sean pilatfr wrote: --- In svg-developers@yahoogroups.com, Sean [EMAIL PROTECTED] wrote

[svg-developers] Selected text

2006-02-03 Thread Sean
Is there a way to deselect selected text with javascript? Thanks. Sean -- I'd rather have a bottle in front of me, than a frontal lobotomy. -- Tom Waits - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my

Re: [svg-developers] Selected text

2006-02-03 Thread Sean
I have managed to add the ability to copy and paste text into my svg text box, but the last thing I need is for the selected text to become unselected when certain events occur. If anyone has a suggestion, I'd appreciate it, and I'll post the updated textBox on Mon. Thanks. Sean benamou

Re: [svg-developers] Selected text

2006-02-06 Thread Sean
. Sean Sean wrote: I have managed to add the ability to copy and paste text into my svg text box, but the last thing I need is for the selected text to become unselected when certain events occur. If anyone has a suggestion, I'd appreciate it, and I'll post the updated textBox on Mon. Thanks

Re: [svg-developers] Selected text

2006-02-06 Thread Sean
This works: object.selectSubString(0,0) Sean wrote: Since it appears that js cannot unselect selected text in SVG, I would like to disable the ability to select text to create my own way to select text. I used pointer-events=none, but I still need to be able to capture click events

[svg-developers] use tag and unique IDs

2006-02-07 Thread Sean
onclick=edit2(evt); xlink:href=#textFrame transform=translate(10,50)/ JS function edit2(evt){ var objet=evt.target; var tspan1 = objet.getElementById(tspan1); //Doesn't work } Thanks! Sean -- I'd rather have a bottle in front of me, than a frontal lobotomy. -- Tom Waits

Re: [svg-developers] Re: use tag and unique IDs

2006-02-08 Thread Sean
(objet.childNodes.length); var child = objet.firstChild; i=0; while(child != null){ childSibling = child.nextSibling; alert(child.nodeType); child = childSibling; } Sean Alastair Fettes wrote: You've made a fundamental mistake. 1. The idea behind a defs section is to resuse (have multiple copies

Re: [svg-developers] Re: use tag and unique IDs

2006-02-08 Thread Sean
Does any one have examples of using SVGUseElement SVGElementInstance? Thanks. Sean Sean wrote: Hi Alastair, Thanks for the input. I figured as much with the id, but getElementByName didn't work either. I was hoping that something would work. I tried the childNodes and firstChild

Re: [svg-developers] Re: use tag and unique IDs

2006-02-08 Thread Sean
I should say navigate the use element. I realize that it is read only, but I can't figure out how to do that. Thanks. Sean wrote: Does any one have examples of using SVGUseElement SVGElementInstance? Thanks. Sean Sean wrote: Hi Alastair, Thanks for the input. I figured as much

Re: [svg-developers] Re: use tag and unique IDs

2006-02-08 Thread Sean
I can get the use tag, I want to be able to navigate the use tag. I have the use referencing a g tag with several elements under the g tag. I want to be able to navigate those elements. I'm coming to the conclusion that it can't be done. Sean Peter Kalev wrote: Why don't you wrap the use

Re: [svg-developers] Re: use tag and unique IDs

2006-02-09 Thread Sean
in the defs and reusing over and over for separate text boxes is not possible. Sean domenico_strazzullo wrote: Sean, Of course it's possible. You need to target the document and not just the element that makes the call: function edit2(evt){ // var objet=evt.target; var objet

Re: [svg-developers] Re: use tag and unique IDs

2006-02-09 Thread Sean
use.getAttribute(id); should return the id of the use tag. I get id is null. Should I be getting null or the id? Thanks. Sean Jeff Rafter wrote: Sean, It can be done, it just has to be done differently in each browser. Try this code inside of your event: var target = evt.target

[svg-developers] Editable Form

2006-02-13 Thread Sean
I uploaded an svg Editable Form. It is the culmination of my editable text experiment. I will next use php to create database driven forms. -- I'd rather have a bottle in front of me, than a frontal lobotomy. -- Tom Waits - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit

Re: [svg-developers] Editable Form

2006-02-13 Thread Sean
It's an IE ASV 3 solution only. Sean wrote: I uploaded an svg Editable Form. It is the culmination of my editable text experiment. I will next use php to create database driven forms. -- I'd rather have a bottle in front of me, than a frontal lobotomy. -- Tom Waits

[svg-developers] Many transform attributes and performance

2006-02-16 Thread Sean
I'm wondering what how using a lot of transform attributes, ie, translate, scale, and rotate, affects the performance of an svg. Is it minimal or significant? My file size will exceed 500k. Thank you. Sean - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http

[svg-developers] scaling stroke width

2006-02-16 Thread Sean
Is there a way to scale without affecting stroke width? Sean - To unsubscribe send a message to: [EMAIL PROTECTED] -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

Re: [svg-developers] Thoughts on optimizing ASV rendering SVG with 5,000 elements

2006-02-22 Thread Sean
about linear gradients and use tags? I'm constantly looking for ideas, so any input would be appreciated. If nothing else, it's a good exercise. Thanks. Sean - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my

Re: [svg-developers] Nested defs Event Bubbling

2006-02-24 Thread Sean
I've spent much time trying to solve a similar issue, and have come to the conclusion that the code below is the only way with a minimal amount of svg text, maybe I'm wrong. defs g id=cmdBold/ g id=cmdItal/ g id=cmdUnln/ /defs !-- toolbar -- g id=tbFormat use xlink:href=#cmdBold/

Re: [svg-developers] Adobe SVG demo source download

2006-02-24 Thread Sean
Right click copy SVG, then use the script type=text/ecmascript xlink:href=somefolder/somefolder/some.js/ path to download the JS. nmotikane wrote: Hi everybody, Anybody knows if Adobe is providing the source code/files to run the SVG demo examples offline on a laptop. The reason is we liked

[svg-developers] Mac vs Windows

2006-04-05 Thread Sean
I'm trying to determine what differences there are between asv 3.x for windows and mac. I am not embedding in an html doc, but I seem to have problems. I also don't have a mac, so testing is a bit difficult. I just need to know where to get started. Thanks! Sean - To unsubscribe send

[svg-developers] IE embed click to activate

2006-04-18 Thread Sean
All of a sudden my svg embedded in an html doc requires a click to activate object, as it it were in an a href tag. Has any one else encountered this? Sean - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my

[svg-developers] Net Neutrality

2006-06-13 Thread Sean
A very good friend of mine, who works for Level 3 Communications, and I were discussing this last night, and it appears to be more of a threat than I thought. He is of the opinion that it is a done deal. I encourage all US members of this group to visit the links below and pass this on.

[svg-developers] getURL/XMLHTTP

2006-06-26 Thread Sean
= document.F4B.getSVGDocument().getElementById(PlanningCanvas);. If I could, which I can't, do away with embedding in html doc and write it as one big svg document, this would be a simple task. Can anyone suggest how I might achieve this? Thank you. Sean Yahoo! Groups

Re: [svg-developers] getURL/XMLHTTP

2006-06-28 Thread Sean
%40yahoogroups.com [mailto:svg-developers@yahoogroups.com mailto:svg-developers%40yahoogroups.com] On Behalf Of Sean Sent: Wednesday, June 28, 2006 12:01 PM To: svg-developers@yahoogroups.com mailto:svg-developers%40yahoogroups.com Subject: Re: [svg-developers] getURL/XMLHTTP This appears to be a an issue

Re: [svg-developers] Re: getURL/XMLHTTP

2006-06-29 Thread Sean
Thank you so much. At first, I completely missed the relevance of what you said. Then it hit me. Basically, instead of var node = parseXML(data.content, document); I needed: var node = parseXML(data.content, parent.document.F4B.getSVGDocument()); Perfect! Sean Martin Honnen wrote

Re: [svg-developers] 'Back' Button in SVG

2006-06-29 Thread Sean
For mapping, I use a g tag like: !-- previous extent variable -- g id='prevExt'/ and set a value such as ext='0 0 500 600' based on the current status before moving on to the new one. Then if I want to go back, I just getAttribute('ext') and set my viewBox to it. Sean talkli wrote: Hi

Re: [svg-developers] Re: 'Back' Button in SVG

2006-06-29 Thread Sean
id=ext1 viewBox=481071 -4396898 7394 6140/ g id=ext2 viewBox=483019 -4394283 1641 1363/ g id=ext3 viewBox=483655 -4395029 2183 1813/ g id=ext4 viewBox=484640 -4394254 299 248/ g id=ext5 viewBox=484738 -4394145 48 40/ g id=ext6 viewBox=484752 -4394134 19 15/ /g Sean talkli

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

2006-08-05 Thread Sean
! Sean - To unsubscribe send a message to: [EMAIL PROTECTED] -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/ * To unsubscribe from

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

2006-08-15 Thread Sean
. My friends are unable to view my SVG. It is database driven, php, svg maps. When they try to open them, it wants to save them or open them, but trying to press the open button does nothing. Any insight would be most appreciated. Thanks! Sean --- In svg-developers@yahoogroups.com http

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

2006-08-22 Thread Sean
accordingly. Like I said, it is only a problem on some computers. Thanks! Sean Sherm wrote: Sean, Have you set the SVG MIME type on your server? I've run into this issue twice before, and neither server had SVG/SVGZ set as a MIME type. I always send server admins to this page to get info

Re: [svg-developers] Announcement: Adobe to Discontinue Adobe SVG Viewer

2006-09-06 Thread Sean
http://www.adobe.com/svg/viewer/install/ nyem wrote: I cannot find the announcement at adobe's website. Care to direct me to the right URL? So what's the alternative SVG viewer for IE? Can somebody make Opera as an IE plugin? Paton J. Lewis wrote: For more information on this decision

Re: [svg-developers] Announcement: Adobe to Discontinue Adobe SVG Viewer

2006-09-06 Thread Sean
My concern with FF, is how slow it is with SVG over 300k. Hopefully within 1.5 years the issue will be solved. I tested it with the FF 2 beta 2, and mouseover events are still laboriously slow. I posted it as a bug back in January, but nothing. Ronan Oger wrote: There are rumours that IE8

Re: [svg-developers] microsoft jscript runtime error javascript object null

2006-09-12 Thread Sean
Unless IE is caching somewhere I'm unaware of, it's not the cache. I've tried jacking my security level to the highest setting, but instead of any JScript runtime errors, which seems odd to me, running a javascript function, I just get nothing. Very strange. Sean Sean wrote: I'll look

Re: [svg-developers] microsoft jscript runtime error javascript object null

2006-09-12 Thread Sean
that assumption. Thanks! Sean Andre M. Winter - Carto.net wrote: hi, there may also be proxies involved. the hardcore-test is renaming (or copying) your main file. when clearing the IE-cache, you also need to call clear the viewed page before (e.g. call about:blank). another possibility

Re: [svg-developers] microsoft jscript runtime error javascript object null

2006-09-12 Thread Sean
to make sure the browser reads some of it, which it does. I'm thinking it is related to getURL or parseXML, but won't know for sure until tomorrow. Sean Ronan Oger wrote: Sean, I have never seen machine-specific errors. As André suggested in his previous email, you may be suffering from some

Re: [svg-developers] microsoft jscript runtime error javascript object null

2006-09-13 Thread Sean
was to make edits on my PC, upload, and have him check it over the phone. I needed to be absolutely certain it was isolated to his machine, I already new it worked on other machines. Thanks! Sean nyem wrote: more troubleshooting ideas.. why don't you ask him to borrow somebody's pc to to check

[svg-developers] XML Document to SVG using XSLT

2011-12-08 Thread Sean
try to replicate a nested XML document? In xml2svg-1.xsl, I've added !-- Beginning of AREA of FOCUS -- to mark where it all goes very wrong for me. Also, I've added resulting SVG (xml2svg-1.svg) for reference. Thank you in advance! Sean ** house-1.xml ** ?xml version=1.0

[svg-developers] Mozilla/Firefox

2004-09-29 Thread Sean Montague
From what I understand the mozilla-win32-svg-GDI.zip and firefox-win32-svg-GDI.zip are the SVG enabled browsers. I can't get them to render anything SVG Is there more to installing these than unzipping and running the executable? There is little useful information regarding installation at the

[svg-developers] reading shape files and/or geodatabases

2005-01-12 Thread Sean Montague
data of a shape file/geodatabase and convert iti to text? Thanks. --Sean - To unsubscribe send a message to: [EMAIL PROTECTED] -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

[svg-developers] Firefox 1.5 mouseover

2005-12-07 Thread Sean Montague
I'm testing FF 1.5, and have an svg file with mouseover events. FF is laboriously slow. Has anyone had similar problems? Sean Yahoo! Groups Sponsor ~-- Most low income households are not online. Help bridge the digital divide today! http

Re: [svg-developers] Screen extents

2005-12-11 Thread Sean Montague
You could try innerWidth innerHeight or if you have embeded it in html: parent.document.SvgMap.clientWidth parent.document.SvgMap.clientHeight G. Wade Johnson wrote: I know there must be an easy answer to this, but how do I get the actual width and height of the viewer. I am not looking for the

Re: [svg-developers] Chrome Path Mouseover

2011-07-20 Thread Sean Montague
http://greenworld.org/chrome-test.svg With chrome you need to move the mouse around until you hit the sweet spot. FF works well, but is so sensitive its hard to keep mouseover. IE with the old ASV 3 plugin is still the best, which I'm trying to mothball. I can't test IE9. Thanks! Sean On 07

Re: [svg-developers] Chrome Path Mouseover

2011-07-20 Thread Sean Montague
this is not an issue? Thank you, Sean On 07/20/2011 04:38 PM, David Dailey wrote: Hi Sean, I think I concur that that are some look and feel differences between Webkit and the others (I do have IE9 Each of the paths has had its stroke width from the g in which stroke-width=0.22% I would probably

Re: [svg-developers] Re: svg on android?

2011-08-31 Thread Sean Montague
I thought Opera exported the SVG as png? Sean On 08/30/2011 02:10 PM, Jerrold Maddox wrote: Yes, Opera Mobile does - just opened this in it and it works well. http://www.personal.psu.edu/jxm22/svgopen07presentation/ Jerry On Aug 30, 2011, at 11:39 AM, Holger Jeromin wrote: David Dailey

[svg-developers] gzip php output

2006-12-31 Thread Sean M Montague
Can anyone offer suggestions on the best way to compress php output of svg? Does the example below compress all the the svg including what is outside of the php tags? Will the content of php require_once(php/map.php); get compressed also? Thank you. --Sean ?php ob_start(ob_gzhandler);? ?php

[svg-developers] Safari image coordinate, FireFox precision, and decimals.

2007-12-09 Thread Sean M Montague
I missing something? Also related to my decimal degrees, does FireFox have a lower level of precision than the Adobe Viewer? Using the above type of coordinates seems to leave large gaps between my images, indicating that the decimals are being rounded off. Thanks! Sean - To unsubscribe