A: 

Was test.swf created with an earlier AS version? According to this swfs published for AS 1.0/2.0 runs in a different AS virtual machine than AS 3.

The parent AVM2 SWF file will not have access to the properties, methods, or objects of the loaded AVM1Movie object.

adamcodes
It was created with AS3 within the past year.
squared
A: 

You can access them directly, using their instance names.

private function swfLoaded():void {
    var clip1:MovieClip = MovieClip(loader.content.myClip1);
    var clip2:MovieClip = MovieClip(loader.content.myClip2);
    // ...
}
Cory Petosky
I tried the following... (please note that the movieclip/symbol was named firstFloor, and the instance of the movieclip was named "firstFloor_mc", and the movieclip was exported as a Class named firstFloor.
squared
1. var clip1:MovieClip = MovieClip(loader.content.firstFloor); error: 1119: Access of possibly undefined property firstFloor through a reference with static type flash.display:DisplayObject.<br><br>2. var clip1:MovieClip = MovieClip(loader.content.firstFloor_mc);error: 1119: Access of possibly undefined property firstFloor through a reference with static type flash.display:DisplayObject.
squared
The second option is correct, assuming the clip is on the first frame of the stage. That second error message is the same as the first. Copy/paste error or did you forget to save the file when you tested the second style? :)
Cory Petosky