Weird MovieClipLoader thing

Hi there,

So I’m trying to write better script for when I have to roll over to AS3, but it’s sometimes more trouble than its worth… This is especially the case with the MovieClipLoader…

So I declare the MCL like this:
[AS]var myMCL:MovieClipLoader = new MovieClipLoader()[/AS]
This works ok, until I try to use this:
[AS]myMCL.onLoadComplete = function()[/AS]
Which tells me that I can’t use onLoadComplete… BUT, if when I declare my MCL, I do it the sloppy way like this:
[AS]myMCL = new MovieClipLoader();[/AS]
It works fine?!

Can anyone enlighten me to why this happens?