How to use handleMouseGrab function?
Posted: 29 Aug 2013 20:15
In the Wiki (https://wiki.videolan.org/Documentation:WebPlugin), there is a handleMouseGrab function.:
I would like to try to use this one, as trying to capture mouse events with a layover div in IE is proving challenging.
Can someone please give an example of how to implement this?
Thanks.
Code: Select all
function handleMouseGrab(event,X,Y)
{
if (!event)
event = window.event; // IE
vlcdebug("new position (" + X + "," + Y + ")");
}
Can someone please give an example of how to implement this?
Thanks.