[RESOLVED] loadMovie("my.swf")
Hello,
I am trying to load a SWF file into another one. In the main one I have this:
PHP Code:
web.loadMovie("webb.swf");
In webb.swf I have this:
PHP Code:
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?