Hola de nuevo amigos...aqui estoy liao con un tema que creo interesante intento hacer una captura de pantalla de mi swf desde un boton...hasta ay bien, el tema es que el codigo que tengo solo me sirve para hacer la captura de un movie clip. me gustaria saber si este codigo se puede modificar para que en vez de hacer la captura solo del mc la haga de una zona determinada de mi swf....a qui os dejo el codigo que estoy utilizado donde output_vid es el mc del que hace la captura...muchas gracias amigos
Código PHP:
function capture(nr)
{
snapshot = new BitmapData(output_vid._width, output_vid._height);
//draw the current state of the Video object into
//the bitmap object with no transformations applied
snapshot.draw(output_vid,new Matrix());
var t:MovieClip = createEmptyMovieClip("bitmap_mc", 1);
t._x = 237;
t._y = 20;
t._xscale = t._yscale = 50;
//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 + 50, _y:t._y + t._height / 2});
}