/////////////////////////////////////////////////////////
_root.txtProzent._visible = 0;
_root.balken._visible = 0;
_root.createEmptyMovieClip("container", 10);
_root.container._x = 50;
_root.container._y = 50;
/////////////////////////////////////////////////////////
extern_laden = function (clip) {
_root.container.loadMovie(clip);
_root.createEmptyMovieClip("control", 20);
_root.txtProzent._visible = 1;
_root.control.onEnterFrame = function() {
if (_root.container.getBytesLoaded()>=4) {
_root.balken._visible = 1;
_root.container._visible = 0;
gesamt = _root.container.getBytesTotal();
bereits = _root.container.getBytesLoaded();
prozent = Math.ceil((bereits/gesamt)*100);
_root.txtProzent.text = prozent+"%";
_root.balken._xscale = prozent;
if (prozent == 100) {
_root.container._visible = 1;
_root.container.gotoAndPlay(2);
_root.txtProzent._visible = 0;
_root.balken._visible = 0;
delete this.onEnterFrame;
}
}
};
};
//////////////////////////////////////////////////////////
extern_laden("yourfile.swf");
//////////////////////////////////////////////////////////
MyMC.removeMovieClip();