I made a few swf's with AP successfully, but when I try to load more than one of them at the same time with loadMovie into a parent swf, the program gets into an endless cycle, eats up the memory and the whole system has to be restarted as I cannot stop it.
What do I do wrong?
Laszlo Borsos
Hungary
var clips:Array = new Array("a001.swf","a002.swf","a003.swf");
var holder:MovieClip = _root.animHolder;
putAnim(0,0);
//putAnim(1,290);
//putAnim(2,580);
function putAnim(index:Number,X:Number):Void
{
var subholder:MovieClip = holder.createEmptyMovieClip("a"+index,holder.getNextHighestDepth());
subholder.loadMovie(clips[index]);
subholder._x = X;
subholder._y = 0;
}
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi!
I made a few swf's with AP successfully, but when I try to load more than one of them at the same time with loadMovie into a parent swf, the program gets into an endless cycle, eats up the memory and the whole system has to be restarted as I cannot stop it.
What do I do wrong?
Laszlo Borsos
Hungary
var clips:Array = new Array("a001.swf","a002.swf","a003.swf");
var holder:MovieClip = _root.animHolder;
putAnim(0,0);
//putAnim(1,290);
//putAnim(2,580);
function putAnim(index:Number,X:Number):Void
{
var subholder:MovieClip = holder.createEmptyMovieClip("a"+index,holder.getNextHighestDepth());
subholder.loadMovie(clips[index]);
subholder._x = X;
subholder._y = 0;
}