Hi I have a problem, I want to write a text and then I would like to move it with the mouse, I tried to find some examples but I didn't found them, I hope some one could help me with some exmaple or a link, thanks
Sorry, I forgot the link: http://srufaculty.sru.edu/david.dailey/svg/graphs10.svg Basically, assuming you're doing this with JavaScipt, then use createElementNS to create the text node, and createTextNode to put stuff in it: T=document.createElementNS(xmlns,"text") Msg=document.createTextNode(4321) T.appendChild(Msg) document.documentElement.appendChild(T) Then dragging and dropping with the mouse is done sorta like in the examples. DD [Non-text portions of this message have been removed] ----- 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/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/svg-developers/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> 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/

