[AS3] Loading External SWF into MovieClip using Loader Class in Flash ActionScript3
Loading swf files in AS2 used to be a very simple thing, not so more in AS3. In the old days of AS2, loadMovie(“external-file.swf”, containerClip) would do the job. Enter AS3, now you first need to define a Loader class and then URLRequest path from where to load the external swf file location. You also…