Problem with attachMovie

I have this code about building a 3d cube which is calling on only one movieclip ‘window’, which represents the stop of the edge of the cube

My question is how can I place 8 diffrent movieclips in the cube, till how it is only one?

[color=slategray]//3dsettings
perspective = 100;
showcounter = -1000;
//drawing a cube
windows = 8;
for (c=1; [color=slategray][/color]c<=windows; c++) {
attachMovie(“window”,c, c);

}
x = new Array(0, -30, 30, -30, 30, -30, 30, -30, 30);
y = new Array(0, -30, -30, 30, 30, -30, -30, 30, 30);
z = new Array(0, 30, 30, 30, 30, -30, -30, -30, -30);
//slot positions
function slot(sx, sy) {
this.x = sx;
this.y = sy;
}[/color]

[color=slategray]and so on and so on[/color]
[color=#708090][/color]
[color=black]Thank you[/color]
goctala