Hi there,
I'm trying to create a video player in AS3 that displays the player controls when the user hovers over the video, however I'm having a hard time getting the MOUSE_OVER event to fire. I've made sure that the video's index is at the top, so that's not the issue. Is there something I'm missing? Is there any reason why this event listener wouldn't work on a video object?
video.addEventListener(MouseEvent.MOUSE_OVER, doThis);
Any ideas on how to make this work?
Thanks in advance for taking a look!