Re: [svg-developers] Detecting SVG Viewer 6 on Firefox

2005-08-16 Thread Renato Salas
G Viewer") { installed = true; break; } } return installed; } Regards, Renato John Dowdell wrote: >Renato Salas wrote: > > >>Does anybody knows how to detect the presence of the Adobe SVG Viewer 6 >>on Firefox?. I've been ch

[svg-developers] Detecting SVG Viewer 6 on Firefox

2005-08-16 Thread Renato Salas
Hi All: Does anybody knows how to detect the presence of the Adobe SVG Viewer 6 on Firefox?. I've been checking if these mimetypes are available: navigator.mimeTypes["image/svg"] and navigator.mimeTypes["image/svg-xml"] and it always return not null, so it means they are set even when the plug

Re: [svg-developers] eventListener crashing IE ????

2005-05-19 Thread Renato Salas
Hi: I had the same problem. My IE crashed when I remove an element that has an event associated with it. (*)For instance, having: var labelRectElement = document.createElementNS(svgNS,"rect"); labelRectElement.addEventListener("mouseover",this,false); //adding the labelRectElement to another n

[svg-developers] HTML to SVG communication

2005-04-07 Thread Renato Salas
Hi everyone: I was trying to use HTML Form Controls to update my SVG graphics. I've already accomplished that but that solution only works on IE under windows. I need it to work on Firefox, Netscape and Safari. I used: 1st method: Inside SVG: parent.myFunction = myFunction; Inside HTML: oncl