# How to get this fade in and unmask effect?

**URL:** https://forum.kirupa.com/t/how-to-get-this-fade-in-and-unmask-effect/96077
**Category:** Uncategorized
**Created:** [December 4, 2003, 5:24pm UTC](https://forum.kirupa.com/t/how-to-get-this-fade-in-and-unmask-effect/96077 "2003-12-04T17:24:44Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Macro](https://avatars.discourse-cdn.com/v4/letter/m/ba8739/32.png) [@Macro](https://forum.kirupa.com/u/Macro)
#### Post date: [December 4, 2003, 5:24pm UTC](https://forum.kirupa.com/t/how-to-get-this-fade-in-and-unmask-effect/96077/1 "2003-12-04T17:24:44Z")

</div>

I’m trying to learn these fade in on load and unmasking effects shown on: [http://www.borispoljicanin.com/flash.html](http://www.borispoljicanin.com/flash.html)

1. I am able to fade the movie clip in, however not sure how to get that bright white to fade effect.

Here’s what I have for the fade in:

[AS]  
onClipEvent (load) {  
//Set movie clip lady alpha to 0%  
\_root.lady.\_alpha = 0;  
}  
onClipEvent (enterFrame) {  
//Fade movie clip lady in  
\_root.lady.\_alpha += 3;  
}  
[/AS]  
2. For the navigation that unmasks itself once the movie clip fade in, I am clueless on where to start. Any ideas?

Thanks Macro.
