
Код:
var container:MovieClip = createEmptyMovieClip("container", getNextHighestDepth());
var mcLoader:MovieClipLoader = new MovieClipLoader();
mcLoader.addListener(this);
mcLoader.loadClip("http://www.orange.md/images/home/promo_abint_ru.jpg", container);
function onLoadInit(mc:MovieClip) {
mc._width = 200;
mc._height = 100;
}