Im still unresolved on this so if you have any ideas I'd really like to hear.
Im simply trying to load external jpegs into a scroll pane component. Here is my code sp is the scrollpane and image_mc is a blank movie clip. Both are on the stage
Code:
var mclListener:Object = new Object();
mclListener.onLoadInit = function(target_mc:MovieClip) {
sp.contentPath=image_mc;
};
var image_mc1:MovieClipLoader = new MovieClipLoader();
image_mc1.addListener(mclListener);
image_mc1.loadClip("content/visual/images/01010000_00.jpg", image_mc);
tnx