Ну вот так, к примеру:

Код:
function fade_in() {
clipToAnimate._alpha += 10;
if (clipToAnimate._alpha >= 100) {
_root.onEnterFrame = standby;
}
}
function standby() {
trace(clipToAnimate.delay);
clipToAnimate.delay -= 1;
if (clipToAnimate.delay < 0) {
_root.onEnterFrame = fade_out;
}
}
function fade_out() {
clipToAnimate._alpha -= 10;
if (clipToAnimate._alpha <= 0) {
_root.onEnterFrame = null;
attachRandomClip();
}
}
function attachRandomClip() {
var num = Math.ceil(Math.random() * 5 + 1);
var mc = _root.attachMovie("clip" + num, "clipToAnimate", 1000, {_x:Stage.width / 2, _y:Stage.height / 2, _alpha:0, delay:100});
_root.onEnterFrame = fade_in;
}
attachRandomClip();