1 2 3 4 5 6 7 8 9 10 11
| var container:MovieClip = this.createEmptyMovieClip("container", this.getNextHighestDepth());
var container2:MovieClip = this.createEmptyMovieClip("container2", this.getNextHighestDepth());
var mcLoader:MovieClipLoader = new MovieClipLoader();
var loadListener:Object = new Object();
loadListener.onLoadInit = function() {
trace("CHARGEMENT ok");
container2.attachMovie("v_champ", "v_champ1", this.getNextHighestDepth(), {_x:100, _y:100, _alpha:100});
//case1();
};
mcLoader.addListener(loadListener);
mcLoader.loadClip("j.gif", container); |
Partager