How do you fade-out using actionscript on externally loaded .swf's?
I've created websites with a main core site / example: http://www.thetimberlodge.com having each section load as a seperate .swf movie. Each loaded movieClip fades in using this actionscript:
__________________________________
onClipEvent (load) {
this._alpha = 0;
}
onClipEvent (enterFrame) {
if (this._alpha<=100) {
this._alpha += 20;
}
}
__________________________________
How do I fade-out the same loaded .swf when you click on another section (button) from the main movie (core)? They fade-in fine but I want them to fade-out the same way when you click on a new button...
Click fade in, new click fade out...
