# Nested Movieclip?

**URL:** https://forum.kirupa.com/t/nested-movieclip/322126
**Category:** flash
**Created:** [May 11, 2011, 9:24am UTC](https://forum.kirupa.com/t/nested-movieclip/322126 "2011-05-11T09:24:18Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![kipping](https://avatars.discourse-cdn.com/v4/letter/k/aeb1de/32.png) [@kipping](https://forum.kirupa.com/u/kipping)
#### Post date: [May 11, 2011, 9:24am UTC](https://forum.kirupa.com/t/nested-movieclip/322126/1 "2011-05-11T09:24:18Z")

</div>

I thought this wouldn’t even be a problem but I’ve been struggling with it for 5 days and I’m running out of time. 😑

I have a Movie Clip (textgeneralhome) within a Movie Clip (general\_menuoptions). All I want is for textgeneralhome to Rollover and Rollout but nothing I’ve tried is working.

I would’ve thought it was simply stating general\_menuoptions.textgeneralhome but obviously not.

```auto
general_menuoptions.textgeneralhome.addEventListener(MouseEvent.MOUSE_OVER, rolloverhome);
general_menuoptions.textgeneralhome.addEventListener(MouseEvent.MOUSE_OUT, rollouthome);   

function rolloverhome(event:MouseEvent):void { 
event.target.gotoAndStop("onhome"); 
}  

function rollouthome(event:MouseEvent):void { 
event.target.gotoAndStop("offhome"); 
}

```

offhome and onhome are in the nested Movieclip

Absolutely any ideas and solutions welcomed, it’s actaully slowly imploding this shouldn’t even be a problem
