first user will see a video(mirror like) n then they will need to draw a rectangle by clicking n dragging(Mouse Down,Move,and Up) The mouse down and up position is stored in variables. So i want them to see the area they cut out( because il be a applying a certain filter on it later)
Problem: it cuts but ONLY starts from the TOP LEFT, i dont have problem with the width and height, just the x, y position. I need it to start cutting from the mouse down position. I dont know where is the source of the problem, any ideas?
(ps: sorry if my explanation is not good, im new here! heee :D)
code snippet:
private function addFilter(prevX:Number, prevY:Number,width:Number , height:Number):void
{
bmpData = new BitmapData(800, 600);
rect = new Rectangle(previousX, previousY, width, height);
point = new Point(previousX, previousY);
bmpData2 = new BitmapData(rect.width, rect.height);
bmpData2.copyPixels(bmpData, rect, point);
var bmp:Bitmap = new Bitmap(bmpData2);
//this part below seem to have no effect, but when i traced the values they are correct
bmp.x = rect.x;
bmp.y = rect.y;
addChild(bmp);
...}
on enter frame
{....
bmpData.draw(video, new Matrix( -1, 0, 0, 1, bmpData.width, 0));
.....
}