Quote:
Originally Posted by jaromanda
rotate will give you a horizontal mirrored image - you need to vertically flip
|
exactly jaromanda. Thanks.
Now I are using:
video = new Video();
video.width = 320;
video.height = 240;
video.x = video.width;
video.y = video.height;
video.scaleY = -video.scaleY;
//video.scaleX = -video.scaleX;
//video.rotation = 180;
vidHolder.addChild( video );