下面是加载多个 swf 的代码:

function manyLoadMovie(num, x, y, xscal, yscal, dis) {
for (var i = 0; ivar Temp = createEmptyMovieClip(“temp”+i, i);
var L = createEmptyMovieClip(“load”+i, i+num);
Temp.t = i;
L.loadMovie(i+”.swf”);
L._xscale = xscal;
L._yscale = yscal;
L._x = x+i*dis;
L._y = y;
T = createTextField(“txt”+i, i+10000, L._x, L._y, 100, 100);
Temp.onEnterFrame = function() {
var a = this._parent[“load”+this.t].getBytesLoaded();
var b = this._parent[“load”+this.t].getBytesTotal();
this._parent[“txt”+this.t].text = int(a*100/b)+”%”;
if (a>=b and a>10) {
this._parent[“txt”+this.t].removeTextField();
this.removeMovieClip();
}
};
}
}
manyLoadMovie(4, 100, 100, 50, 50, 50);

//参数分别是文件数量,起点x,起点y,宽度比例,高度比例,排列间距.

//注意外部文件分别为0.swf,1.swf,2.swf………递增的,其实稍微改下,加载图片也一样

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.