Servus
Probiers mal mit sowas!
PHP-Code:
var mc:MovieClip = _root.createEmptyMovieClip("Bild", this.getNextHighestDepth());
var bild_mc = new MovieClipLoader();
ObjListener = new Object();
ObjListener.onLoadStart = function(obj)
{
trace("Start |" + obj);
};
ObjListener.onLoadInit = function(obj)
{
trace(obj._width + " | " + obj._height);
};
ObjListener.onLoadComplete = function(obj)
{
trace("Ready |" + obj);
};
_root.bild_mc.addListener(ObjListener);
_root.bild_mc.loadClip("Nasa_2.jpg", mc);