Hi all,
I'm trying to make a webcam app, using a microsoft Lifecam VX-1000 and Flash Pro 8. It has 320x240 resolution. I capture the camera
image using
var image:BitmapData = new BitmapData(_root.view.width, _root.view.height);
image.draw(_root.view);
where view is my camera object.
The...