В кадре 244 видеоклипа ball вы можете отправить событие, чтобы сообщить MainTimeline, что кадр 244 достигнут, затем вам нужно будет удалить все ссылки на ball mc и позволить сборке мусора обрабатывать его оттуда.
//in the ball movie clip, on frame 244
this.dispatchEvent( new Event("End of Movie") );
//in the main timeline , after loading the swf
function onCompleteHandler(event:Event):void
{
//keep the ball movie clip as a local variable
var ball:MovieClip = event.target.loader.content as MovieClip;
ball.name = "ball";
ball.addEventListener( "End of Movie" , remove , false , 0 , true );
addChild( ball);
}
function remove(event:Event):void
{
event.target.removeEventListener( 'End of Movie' , remove );
//now you can retrieve the ball mc by its name and remove it from the stage
this.removeChild( this.getChildByName('ball') );
}