с версией того в чем вы открываете, у меня ЦС5, максимум он в ЦС4 может сохранить.
вот виде листинга:
(на экране 4 кнопки (b1,b2,b3,b4), мувиклип с именем "player"(468x60))

Код AS3:
function PlayNext() {
myMCL.loadClip(SwfList[currentPlay],player)
currentPlay++;
if (currentPlay == SwfList.length) {
currentPlay = 0;
}
}
myMCL = new MovieClipLoader(); //define MovieClipLoader
myListener = new Object(); //define listener
myMCL.addListener(myListener);
myListener.onLoadComplete = function(targetMC) {
if (autoplay) {
targetMC.onEnterFrame = function() {
if ((this._currentframe+1) == this._totalframes) {
PlayNext();
}
}
}
}
// инит
SwfList = new Array();
SwfList.push('1.swf');
SwfList.push('2.swf');
SwfList.push('3.swf');
currentPlay = 0;
autoplay = true;
// кнопки
b1.txt.text = '*';
b2.txt.text = '1';
b3.txt.text = '2';
b4.txt.text = '3';
b1.onRelease = function () {
autoplay = true;
PlayNext();
}
b2.onRelease = function () {
autoplay = false;
currentPlay = 0;
PlayNext();
}
b3.onRelease = function () {
autoplay = false;
currentPlay = 1;
PlayNext();
}
b4.onRelease = function () {
autoplay = false;
currentPlay = 2;
PlayNext();
}
// паехале!
PlayNext();