# Help, mouseEvent.MOUSE\_OUT Issue

**URL:** https://forum.kirupa.com/t/help-mouseevent-mouse-out-issue/270171
**Category:** flash
**Created:** [September 5, 2008, 10:11pm UTC](https://forum.kirupa.com/t/help-mouseevent-mouse-out-issue/270171 "2008-09-05T22:11:52Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![wuzzi2ya](https://avatars.discourse-cdn.com/v4/letter/w/e79b87/32.png) [@wuzzi2ya](https://forum.kirupa.com/u/wuzzi2ya)
#### Post date: [September 5, 2008, 10:11pm UTC](https://forum.kirupa.com/t/help-mouseevent-mouse-out-issue/270171/1 "2008-09-05T22:11:52Z")

</div>

First off I have placed my as3 below:  
read on…

stop();  
import flash.display.MovieClip;  
import flash.events.MouseEvent;

kenny.addEventListener(MouseEvent.MOUSE\_OVER, mouseOverHandler);  
kenny.addEventListener(MouseEvent.MOUSE\_OUT, mouseOutHandler);  
beth.addEventListener(MouseEvent.MOUSE\_OVER, mouseOverHandler);  
beth.addEventListener(MouseEvent.MOUSE\_OUT, mouseOutHandler);

kenny.buttonMode = true;  
beth.buttonMode = true;

function mouseOverHandler(e:MouseEvent):void  
{  
kenny.alpha =1;  
beth.alpha =1;  
}

function mouseOutHandler(e:MouseEvent):void  
{  
kenny.alpha =.55;  
beth.alpha =.55;  
}

Issue :puzzle: : I am trying to get the alpha on rollover for each individual MC, yet when rolling over any MC they are all alpha. Please any help on separating the MC so that an alpha is only applied to one specific MC at a time.

Thanks so much :} …
