Hi Renato,
unfortunately that won't work. With the current Adobe SVG viewer and web browsers you can only use Internet-Explorer to do such things. You can control HTML from ASV using browserEval() but not the other way round. If you want your SVG application to work in all browsers, I recommend using SVG only applications. You would have to do the form controls in SVG. It's the harder way to go, but also the more flexible way. You can completely control every aspect of your form controls that way. Andreas --- In [email protected], Renato Salas <[EMAIL PROTECTED]> wrote: > 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: onclick="myFunction();" > > 2nd method: > Inside SVG: top.myFunction = myFunction; > Inside HTML: onclick="myFunction();" > > 3rd method: > Inside SVG: browserEval("..."); > I know this works on Mozilla based browsers, but I was only able to use > it for calling javascript methods from SVG to HTML but not the other way. > > Is there a way to send this statement: "top.myFunction = myFunction;" as > a parameter to browserEval()?. Do you have any idea of how can I > implement the HTML to SVG communication in a crossBrowser fashion? > > Thanks in advance > > Renato ----- 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 this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

