You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Add player.onMouseOver() + player.onMouseEvent() in ActionScript API Created Jun 22, 2009

This thread is solved

Views: 3559     Replies: 2     Last reply Oct 15, 2009  
You must login first before you can use this feature

tacker

Posts: 4

Registered:
Jun 22, 2009

Add player.onMouseOver() + player.onMouseEvent() in ActionScript API

Posted: Jun 22, 2009

Please add the events onMouseOver and onMouseOut to the PlayerEventDispatcher thus making them available for use in flash plugins.

The current workaround is to configure the action via JavaScript.

web00132

Posts: 17

Registered:
Oct 14, 2009

Play onmouseover, stop onmouseout

Posted: Oct 14, 2009

Reply to: Add player.onMouseOver() + player.onMouseEvent() in ActionScript API, from tacker
Do you know if that's possible also to accomplish with JavaScript? And i would love to get rid of that play symbol in the middle if you anything bout' that.

web00132

Posts: 17

Registered:
Oct 14, 2009

Easy!

Posted: Oct 15, 2009

Reply to: Play onmouseover, stop onmouseout, from web00132
Figured it out myself:

onMouseOver: function() {
this.play();
},
onMouseOut: function() {
this.stop();
},