Combined Code
frame 1 {
gotoAndStop(2);
}
movieClip 4 {
frame 1 {
this.gotoAndStop(2);
}
frame 2 {
this.stop();
}
}
instance of movieClip 4 {
onClipEvent (load) {
gotoAndStop(2);
}
}
movieClip 7 {
}
instance of movieClip 7 {
onClipEvent (load) {
i = Math.round(Math.random() * 3) + 6;
}
onClipEvent (enterFrame) {
--i;
if (i < 0) {
_root.gotoAndStop(Math.round(Math.random() * 3) + 1);
}
}
}
frame 2 {
stop();
}
instance of movieClip 7 {
onClipEvent (load) {
i = Math.round(Math.random() * 3) + 6;
}
onClipEvent (enterFrame) {
--i;
if (i < 0) {
_root.gotoAndStop(Math.round(Math.random() * 3) + 1);
}
}
}
frame 3 {
stop();
}
movieClip 11 {
}
instance of movieClip 11 {
onClipEvent (load) {
i = Math.round(Math.random() * 3) + 4;
}
onClipEvent (enterFrame) {
--i;
if (i < 0) {
_root.gotoAndStop(Math.round(Math.random() * 3) + 1);
}
}
}
frame 4 {
stop();
}
movieClip 13 {
}
instance of movieClip 13 {
onClipEvent (load) {
i = Math.round(Math.random() * 3) + 5;
}
onClipEvent (enterFrame) {
--i;
if (i < 0) {
_root.gotoAndStop(Math.round(Math.random() * 3) + 1);
}
}
}