I've tried everything to get this to work ending with hard coding the numbers in, but when I mouseover the stage nothing happens at all. The mouseover (or mousemove) will only activate when I'm actually over the image itself. Can anyone tell me how to make an image move left or right whenever I move my mouse over the stage?
stage.on('mouseover', function(){
var mousePos = stage.getUserPosition();
if (mousePos.x >= 289)
{
rect.move(5, 0);
}
else
{
rect.move(-5,0);
}
stage.add(layer);
});
