Skip to main content
July 24, 2009
Question

MouseEvent target? MouseEvent relatedObject?

  • July 24, 2009
  • 1 reply
  • 908 views

I have the following:

rwBtn.addEventListener(MouseEvent.MOUSE_OVER, audioOver);

function audioOver(e:MouseEvent):void

{

     var thisClip:MovieClip = e.relatedObject;

     thisClip.alpha = 0;

}

I would like to change the alpha of the clip that is being rolled over. I don't know how to target the clip that is being rolled over. How do I do that?

Thank you very much!!!

This topic has been closed for replies.

1 reply

kglad
Community Expert
Community Expert
July 24, 2009

rwBtn.addEventListener(MouseEvent.MOUSE_OVER, audioOver);

function audioOver(e:MouseEvent):void

{

e.currentTarget.alpha = .3;

     var thisClip:MovieClip = e.relatedObject;

     thisClip.alpha = 0;

}


July 24, 2009

Thank you Kglad!

kglad
Community Expert
Community Expert
July 24, 2009

you're welcome.