Ovaire d'Oz
01-18-2008, 12:32 PM
Hello,
I am trying to load a SWF file into another one. In the main one I have this:
web.loadMovie("webb.swf");
In webb.swf I have this:
var i:Number;
for (i=0; i<4; i++){
attachMovie("title","web"+i,10+i);
_root["web"+i]._x = 20;
_root["web"+i]._y = 20+20*i;
}
But when I open the main swf and it loads webb.swf, the movie clips of webb.swf are not displaying as I am trying to make them display.
In other words, why are not the MCs in their x and y place?
I am trying to load a SWF file into another one. In the main one I have this:
web.loadMovie("webb.swf");
In webb.swf I have this:
var i:Number;
for (i=0; i<4; i++){
attachMovie("title","web"+i,10+i);
_root["web"+i]._x = 20;
_root["web"+i]._y = 20+20*i;
}
But when I open the main swf and it loads webb.swf, the movie clips of webb.swf are not displaying as I am trying to make them display.
In other words, why are not the MCs in their x and y place?