# ROLL\_OVER Issue

**URL:** https://forum.kirupa.com/t/roll-over-issue/322010
**Category:** flash
**Created:** [May 7, 2011, 3:53am UTC](https://forum.kirupa.com/t/roll-over-issue/322010 "2011-05-07T03:53:39Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![flashdaddy](https://avatars.discourse-cdn.com/v4/letter/f/e36b37/32.png) [@flashdaddy](https://forum.kirupa.com/u/flashdaddy)
#### Post date: [May 7, 2011, 3:53am UTC](https://forum.kirupa.com/t/roll-over-issue/322010/1 "2011-05-07T03:53:39Z")

</div>

Hi All,

I have a bit of an issue here. I have a series of movie clips, wen you rollover one a little thumbnail pops up, when you click the thumbnail, it takes you to a specified URL. This is all working perfectly. My issue is, when I roll off of the thumbnail, back onto the logo, the image reloads itself, which makes a tiny flicker (annoying). Anyone know how I can get away from that annoying flicker? Code snippet below:

```auto

private function loadImgOver():void {
			
			for(var i:int = 0; i < image_holder.numChildren; i++) {
				
				var img = image_holder.getChildAt(0);
				image_holder.removeChild(img);
			}
			
			loader = new Loader();
			thumbReq = new URLRequest(thumbUrl);
			loader.load(thumbReq);
			loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadThumb);
			loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, errorLoadingThumb);
		}

```
