My problem is the following:

There's a MouseMotionListener to track the position of the cursor:

var PageX;
var PageY;

/* Cursor Position */
PageX = 50;
PageY = 60;
CursorPositionListener = new EventListener ( );
CursorPositionListener.onmousemove = function ( e ) {
        PageX = e.getPageX ( );
        PageY = e.getPageY ( );
}

// add it to the document:
DynAPI.document.addEventListener ( CursorPositionListener );


On the other side I've got a link with jascript event-handler 'onlick' or
somthing else

<a href="javascript:void(0)" onclick="alert( 'blablabla' );">test</a>

The fact is, in IE it's ok, everything works like I supposed to.In NS4.7
 I've got no other on my system ) the cursor postition is tracked but the
event-handler doesn't work. There's no error in the Javascript-Console.

So what would you say, how to fix this problem.
By the way, it has to look like this, because the page consist of a huge
table ( overkill with pure DynLayer technic ) and I need the cursor
position, while clicking the link.

Thanks for help :-)

Bernhard



_______________________________________________
Dynapi-Help mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-help

Reply via email to