Well Arain, I know for a fact that SVG can call the JavaScript 
functions on the page it is embedded in, so I guess you could make a 
workaround with this.
As an example, say you wanted to make the circle, say, put the 
text "You clicked me!" in an input element with the name "input" and 
in the form named "form" once it got clicked. On the HTML page, you 
would put something like:
<script type="text/javascript">

function insertValue(text)
{
document.form.input.value = text;
}
</script>
Then, in the SVG document, you'd put something like:

<circle cx="150" cy="150" r="100" onclick="javascript:insertValue
('You clicked me!')" />
Well, I certainly hope this helps, let me know if it does. Best 
reguards,
Aaron Brookner.





------------------------ Yahoo! Groups Sponsor --------------------~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/1U_rlB/TM
--------------------------------------------------------------------~-> 

-----
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/
 



Reply via email to