Re: [svg-developers] Re: relative positioning

2006-03-29 Thread Omar Abo-Namous
thnx very much. Didn't know one can nest svg in svg. Holger Will wrote: > Hi Omar > > you can achieve this effect with nested s > > > http://www.w3.org/2000/svg"; > xmlns:xlink="http://www.w3.org/1999/xlink";> > > > > > > > hth > Holger > > Omar Abo-Namous schrieb: > >> ok, i

[svg-developers] Inline SVG FF Mac problem

2006-03-29 Thread drlippman
Hi, 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 element (rect, circle, etc) will work fine. Is this a FF-Mac bug, or am

RE: [svg-developers] Questions about input / embed tag workaround / symbols on this URL

2006-03-29 Thread Geoffrey Swenson
Since nobody replied, I have a workaround. It seems that if I build up the object using the DOM, it doesn't appear. But if I paste in the exact same SVG code generated BY the scripting into the source SVG file, the element appears. What gives here? So I just generated all 12 permutations of t

[svg-developers] weird ff clipping problem

2006-03-29 Thread Omar Abo-Namous
Hi everyone, could someone have a look at this file: http://www.toomuchcookies.net/nbrh.svg.php When prompted please answer with "yes" or "ok". I'll get to this prompt.. There are four buttons at the top, bottom, left and right side. I use them to navigate through the map. If you click on one

[svg-developers] filetype:svg +the

2006-03-29 Thread rossendryv
filetype:svg +the can be used to search for all the SVG Documents indexed by Google. Is there any communication with Google as to when SVG will be a recognized file format? I would also like to mention our company recently released SVG Document Templates 1.0 The concept can be used for all othe

[svg-developers] count of web sites discussing SVG

2006-03-29 Thread David Dailey
About 360 days ago, I did a Google search on the words "JavaScript" and "SVG". I got 522,000 hits. The same search today yielded 6,740,000 hits. I don't know if this means there is a lot more being done or merely if Google has figured out new ways of finding those pages, but I suspect this indi

Re: Rép. : [svg-developers] postURL - ASP.ne t Update

2006-03-29 Thread Jonathan mayer
As an update, I thought that I would just post this code Dim l As Long = Request.InputStream.Position Dim str2 As Stream = Request.InputStream Dim strLen As Integer = CInt(str2.Length) Dim strArr(strLen) As Byte Dim strRead As Integer = str2.Read(strArr, 0, strLen

Re: Rép. : [svg-developers] postURL

2006-03-29 Thread Jonathan mayer
Thanks very much for this guys Jonathan --- Holger Will <[EMAIL PROTECTED]> wrote: > Hi Jonathan > > in asp just do > > set xml= server.createObject("msxml2.domdocument") > xml.load(request) > xml.save server.mapPath("savedFile.xml") > > hth > Holger > > > > Jonathan mayer schrieb: > > > S

Re: [svg-developers] Re: relative positioning

2006-03-29 Thread Holger Will
Hi Omar you can achieve this effect with nested s http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink";> hth Holger Omar Abo-Namous schrieb: > ok, i need yet another thing: > > i would like to position and scale the buttons relatively (can be done > with vie

Re: [svg-developers] Disable Zoom but unable Pan

2006-03-29 Thread Holger Will
Nikolya Patskov schrieb: > Hello! > > Please say, how can I disable Zoom but unable Pan. Is it possible? Hi Nikolya i think this is not possible directly, but you can do this with script. here is a simple example: http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink"; view

Re: Rép. : [svg-developers] postU RL

2006-03-29 Thread Holger Will
Hi Jonathan in asp just do set xml= server.createObject("msxml2.domdocument") xml.load(request) xml.save server.mapPath("savedFile.xml") hth Holger Jonathan mayer schrieb: > Sorry Martin, > > Just to Clarify:- > > > This is more a scripting question that a postURL > question. > > Am used to

Re: Rép. : [svg-developers] postURL

2006-03-29 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Jonathan mayer <[EMAIL PROTECTED]> wrote: > Am used to asp and obviously can work with > request.querystring and session etc but am puzzled as > to how I access this data. With classic ASP and VBScript if someone does a postURL('whatever.asp', printNode(

Re: Rép. : [svg-developers] postURL

2006-03-29 Thread Jonathan mayer
Sorry Martin, Just to Clarify:- This is more a scripting question that a postURL question. Am used to asp and obviously can work with request.querystring and session etc but am puzzled as to how I access this data. Jonathan --- Martin Honnen <[EMAIL PROTECTED]> wrote: > --- In svg-developer

Re: Rép. : [svg-developers] postURL

2006-03-29 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Jonathan mayer <[EMAIL PROTECTED]> wrote: > What format is it being posted in? See , you can pass in the content type as an optional argument e.g. if you want to post XML you could do e.g. postURL('whatever.php', printNode(some

Re: Rép. : [svg-developers] postURL

2006-03-29 Thread Jonathan mayer
Thanks for that Jerome Another question if I may? What format is it being posted in? - Is it a querystring? - How can my script Identify It? JOnathan --- Jérome de la Goutte <[EMAIL PROTECTED]> wrote: > Hi Jonathan, > > The target of PostURL should be a serverside script > (ASP, PHP, CGI, ...

Re: [svg-developers] Re: relative positioning

2006-03-29 Thread Omar Abo-Namous
ok, i need yet another thing: i would like to position and scale the buttons relatively (can be done with viewBox, thnx) but the underlying map should be constant in scaling at least. Any ideas? thnx in advance. Omar Martin Honnen wrote: > --- In svg-developers@yahoogroups.com, Omar Abo-Namo

Rép. : [svg-developers] postURL

2006-03-29 Thread Jérome de la Goutte
Hi Jonathan, The target of PostURL should be a serverside script (ASP, PHP, CGI, ...) and this script will save your string to the file, if you code it well. But you cannot upload data to a file directly. Bye Jérôme --- Jérôme de la Goutte Responsable de pro

[svg-developers] postURL

2006-03-29 Thread jonrmayer
Hi Guys, I have a function within an svg document whose sole purpose is to send dynamically created map to the server. function test_it() { var map = svgDoc.getElementById("map"); var string = printNode(map); alert(string); postURL("http://localhost:2958/SystemTesting/

Re: [svg-developers] Re: relative positioning

2006-03-29 Thread Omar Abo-Namous
Thank you Martin. I will try that. Martin Honnen wrote: > --- 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 >>

[svg-developers] Disable Zoom but unable Pan

2006-03-29 Thread Nikolya Patskov
Hello! Please say, how can I disable Zoom but unable Pan. Is it possible? - 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: