спасибо! работает! Вот работающий пример:

Код AS1/AS2:
import flash.display.*;
var newWidth = Stage.width;
var newHeight = Stage.height;
this.createEmptyMovieClip('pic',this.getNextHighestDepth());
var backBit:BitmapData = new BitmapData(newWidth, newHeight, true);
pic.attachBitmap(backBit,pic.getNextHighestDepth(),"auto",true);
backBit.draw(_root);