# loadMovie and clickable thumbnails q

**URL:** https://forum.kirupa.com/t/loadmovie-and-clickable-thumbnails-q/200532
**Category:** flash
**Created:** [September 13, 2006, 12:08am UTC](https://forum.kirupa.com/t/loadmovie-and-clickable-thumbnails-q/200532 "2006-09-13T00:08:24Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![smeee](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/smeee/32/2805_2.png) [@smeee](https://forum.kirupa.com/u/smeee)
#### Post date: [September 13, 2006, 12:08am UTC](https://forum.kirupa.com/t/loadmovie-and-clickable-thumbnails-q/200532/1 "2006-09-13T00:08:24Z")

</div>

I’m writing an image browser, and I want for it to load thumbnails (whose paths are stored in an array) into a pre-existing clip, and then have that be clickable. However, I can’t get it to work.

This is my constructing for loop.

```auto
newClip = this.attachMovie("btn_mc","btn"+i+"_mc",this.getNextHighestDepth());
newClip.loadMovie(thumbs*);

```

It will load the thumbnails but they aren’t clickable. If I take out

```auto
newClip.loadMovie(thumbs*);

```

it loads the default background of my btn\_mc instance and it works properly. Is there a way to have both of these things happen? Any help is greatly appreciated!
