Aqui hay otra forma usando Bitmaps y creando solo un MovieClip
Código:
import flash.display.BitmapData;
var bm:BitmapData = BitmapData.loadBitmap("canabis");
this.createEmptyMovieClip("fondo", 1);
matrix = new Matrix();
clipped = true;
smoothing = true;
fondo.moveTo(0,0);
fondo.beginBitmapFill(bm, matrix, clipped, smoothing);
fondo.lineTo(0,0)
fondo.lineTo(Stage.width,0)
fondo.lineTo(Stage.width,Stage.height)
fondo.lineTo(0,Stage.height)
fondo.lineTo(0,0)
Donde "canabis" es el nombre de linkage del bitmap en la libreria.