# Possible To Add A Load Feature In A Movie Clip?

**URL:** https://forum.kirupa.com/t/possible-to-add-a-load-feature-in-a-movie-clip/259290
**Category:** flash
**Created:** [May 2, 2008, 9:36pm UTC](https://forum.kirupa.com/t/possible-to-add-a-load-feature-in-a-movie-clip/259290 "2008-05-02T21:36:09Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Hdub](https://avatars.discourse-cdn.com/v4/letter/h/f4b2a3/32.png) [@Hdub](https://forum.kirupa.com/u/Hdub)
#### Post date: [May 2, 2008, 9:36pm UTC](https://forum.kirupa.com/t/possible-to-add-a-load-feature-in-a-movie-clip/259290/1 "2008-05-02T21:36:09Z")

</div>

I have a movie clip that animates when you roll over it located in my main timeline. I would also like this movie clip to LOAD EXTERNAL MOVIE CLIP when it is clicked on. Is this even possible?

I tried loading the animated movie clip into a button and that did not function

Here is the code for the movie clip (which has an instance name of b3)

I was hoping I could just add some code here to load the movie clip which is called 0788\_buy.swf

b3.onRollOver = over;  
b3.onRollOut = out;

function over() {  
this.gotoAndPlay(2);  
}

function out() {  
this.gotoAndPlay(7);  
}

I even tried making an invisible button on its own layer over the movie clip but it overrode the animation of that movie clip
