# MovieClip Issue

**URL:** https://forum.kirupa.com/t/movieclip-issue/304926
**Category:** flash
**Created:** [February 16, 2010, 5:02pm UTC](https://forum.kirupa.com/t/movieclip-issue/304926 "2010-02-16T17:02:32Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![agent67orange](https://avatars.discourse-cdn.com/v4/letter/a/3da27b/32.png) [@agent67orange](https://forum.kirupa.com/u/agent67orange)
#### Post date: [February 16, 2010, 5:02pm UTC](https://forum.kirupa.com/t/movieclip-issue/304926/1 "2010-02-16T17:02:32Z")

</div>

Hello all,

I am having a movie clip issue. I don’t normally use flash in this way but I am trying to learn some new things.

I have a movieclip that acts as a rollover…you rollover the clip and it presents more information. Within that clip is another movie clip that when you rollover it, the clip slightly enlarges - signifying a link.

the problem is the top movie clip loads and goes through it’s animation/rollover action just fine…however the movie clip inside does not go through it’s animation/rollover.

Here is the movieclip AS that I am using:

stop();

this.onEnterFrame = function(){  
if(rewind == true){ //if rewind switch is set to true play backwards  
prevFrame(); // play backwards  
}  
}

this.onRollOver = function(){  
rewind = false; //set variable (or switch) that decides wether ot not to play backwards…  
gotoAndPlay(“Finance”, 1); // play this movie clip… (grow the button(tween));  
}

this.onRollOut = function(){  
gotoAndPlay(“Finance”, 1); // play this movie clip… (grow the button(tween));  
}

this.onRelease = function(){  
getURL(“[http://google.com](http://google.com)”,"\_blank");  
}

Does any one have a clue as to what is stopping the clip?
