He ntentado esto entre varias cosas, una ayudita porfa
Código PHP:
function capture(nr)
{
snapshot = new BitmapData(414, 414);
snapshot._root._x = 68;
snapshot._root._y = 0;
//draw the current state of the Video object into
//the bitmap object with no transformations applied
snapshot.draw(_root ,new Matrix());
var t:MovieClip = createEmptyMovieClip("bitmap_mc", 0);
t._x = 10;
t._y = 0;
t._xscale = t._yscale = 100;
//display the specified bitmap object inside the movie clip
t.attachBitmap(snapshot,1);
var filterArray = new Array(myFilters[nr]);
t.filters = filterArray;
attachMovie("print_but","bot",100,{_x:t._x + t._width -1, _y:t._y + t._height / 1.5});
}