Hi
Please explain what is wrong in this code:
function duplicateMovieClipImage(from:MovieClip, target:MovieClip){
        var visuals = new flash.display.BitmapData(from._width, from._height);
        visuals.draw(from);
        target.attachBitmap(visuals, 1,"auto",true);

}

duplicateMovieClipImage(mc,img)
img._xscale=50;
img._yscale=50;
duplicateMovieClipImage(img,img2)
I expected that img1 and img2 have the same scale. Instead of that
img2 show 50% of mc.
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to