entity.mouseOut(function (event, control) {
// Mouse out with button
console.log('Mouse out button: ' + event.button);
// Stop the event propagating further down the scenegraph
control.stopPropagation();
// You can ALSO stop propagation without the control object
// reference via the global reference:
ige.input.stopPropagation();
});