public _url : String [read-only]
Retrieves the URL of the SWF, JPEG, GIF, or PNG file from which the movie clip was downloaded.
The following example displays the URL of the image that is loaded into the image_mc instance in the Output panel.
this.createEmptyMovieClip("image_mc", 1);
var mclListener:Object = new Object();
mclListener.onLoadInit = function(target_mc:MovieClip) {
trace("_url: "+target_mc._url);
};
var image_mcl:MovieClipLoader = new MovieClipLoader();
image_mcl.addListener(mclListener);
image_mcl.loadClip("http://www.helpexamples.com/flash/images/image1.jpg", image_mc);