[mx] MovieClipLoader is ignoring me!

[font=Arial]Hey All,
Trying to get a MovieClipLoader to work for me… This code is taken pretty much right from Macromedia’s Help file. I get no error messages (yay), but I also get no trace statement (boo) or loaded clip (boo2). There is a clip named audioplayer.swf in the same directory as my file.

var mclAudioLoader:MovieClipLoader = new MovieClipLoader();
var oListener:Object = new Object();

oListener.onLoadStart = function():Void {
trace(“Started loading”)
};

mclAudioLoader.addListener(oListener);

this.createEmptyMovieClip(“holder_mc”, this.getNextHighestDepth());
mclAudioLoader.loadClip(“audioplayer.swf”, holder_mc);

Thanks for any help,

Steve[/font]