I guess Im not understanding... you always going to have a registration point..
no matter if you use _levels or targets..
but if you want to use _levels instead (not recommended)
just change the code
PHP Code:
var totalSwfs:Number = 50;
for(i=0; i<totalSwfs; i++){
loadMovieNum("a.swf", (i+1));
}
however..they wont be placed randomly.. unless you place:
PHP Code:
this._x = random(500);
this._y = random(600);
in the first frame of a.swf so it can position itself randomly..
(and your still going to have your 'registration' problem as you put it).. so I dont know what "unnecessary actionscripting" you are referring to..