[svg-developers] My shape doesn't want to follow....

2006-06-14 Thread Bruno Marquiÿffffe9
Hi all, I have a weird behavior, that I will try to explain you, first, I'am using IE6 and ASV3 : I have severals elements in my svg document those look like this : g onmousemove=changePosition(evt) transform=translate(...) use xlink:href... //a complex icon //no evt listener rect

Re: [svg-developers] My shape doesn't want to follow....

2006-06-14 Thread Peter Thompson
Bruno, I couldn't quite follow what you posted. If nobody provides an answer, post again with either a URL to the page with the problem or include the smallest complete sample of the SVG with the problem and description in your email. Peter --- Bruno Marquiÿe9 [EMAIL PROTECTED] wrote: Hi

RE: [svg-developers] My shape doesn't want to follow....

2006-06-14 Thread Doug Schepers
Hi, Bruno- Bruno Marquiÿe9 wrote: | | When the mouse pointer is over the use element (a complex | icon), if I move too fast the mouse, the g element doesn't | have time to follow and so the mouse pointer goes out of the | displayed shape... and so the mouse pointer and the shape are |

Re : [svg-developers] My shape doesn't want to follow....

2006-06-14 Thread Bruno Marquiÿffffe9
Thanks for your answer. Your problem is common, though your diagnosis is probably not quite right. If you are putting the mousemove event on the target element itself, then you are losing the mousemove event when you exit the target element's area. ***Yes you're right, the g is sometimes not

Re: Re : [svg-developers] My shape doesn't want to follow....

2006-06-14 Thread Phi Tran
On 6/14/06, Bruno Marquiÿe9 [EMAIL PROTECTED] wrote: Thanks for your answer. Your problem is common, though your diagnosis is probably not quite right. If you are putting the mousemove event on the target element itself, then you are losing the mousemove event when you exit the target

RE: [svg-developers] My shape doesn't want to follow....

2006-06-14 Thread Doug Schepers
Hi, Bruno- You may want to look at my little drag-and-drop example for inspiration. It works according to the principle I suggested before: http://svg-whiz.com/svg/DragAndDrop.svg Regards- Doug [EMAIL PROTECTED] www.vectoreal.com ...for scalable solutions. Bruno wrote: | | Thanks for your