# Need help with movie clip that shows what you've clicked

**URL:** https://forum.kirupa.com/t/need-help-with-movie-clip-that-shows-what-youve-clicked/279354
**Category:** Uncategorized
**Created:** [January 13, 2009, 9:00pm UTC](https://forum.kirupa.com/t/need-help-with-movie-clip-that-shows-what-youve-clicked/279354 "2009-01-13T21:00:43Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![chrisribar](https://avatars.discourse-cdn.com/v4/letter/c/5fc32e/32.png) [@chrisribar](https://forum.kirupa.com/u/chrisribar)
#### Post date: [January 13, 2009, 9:00pm UTC](https://forum.kirupa.com/t/need-help-with-movie-clip-that-shows-what-youve-clicked/279354/1 "2009-01-13T21:00:43Z")

</div>

here’s the site url: [www.chrisribar.com/nps](http://www.chrisribar.com/nps)

what i want to happen: when you click on gallery -\> then bfa, it shows a list of names (movie clips). when you rollover a name, it plays a yellow fade in and a fade out on rollout. when you click a name, it opens an external movie clip that takes up the fullscreen. i want the movie clip that was just clicked to stay activated (yellow - to show that you already viewed this one) but still be clickable.

my current script:

bfa01.onPress = function(){  
\_root.center\_mc.antBHolster.loadMovie(“anthonyb.swf”);  
this.enabled = false;  
}

bfa01.onRollOver = function(){  
this.gotoAndPlay(“in”);  
}

bfa01.onRollOut = function(){  
this.gotoAndPlay(“out”);  
}

the this.enabled = false; keeps the name yellow but once you click it, you can no longer click this link. i think i’m really close and i hope I explained this as clear as possible. i just need to know what script would keep the movie clip stuck on the out. thanks for your help guys and gals.
