Open GoogleCodeExporter opened 8 years ago
Hi, Did you find a work around? Im facing the same issue.
Original comment by thebeani...@gmail.com
on 7 May 2011 at 9:00
I'm having same issue. Any clue? Thanks!
Original comment by duyvest...@gmail.com
on 12 May 2011 at 11:11
Ok guys, I did it (it took me 3 hours).
-Open the Webcam.as file.
-In line 145, BEFORE:
addChild( bmp );
You should add:
bmp.scaleX = video_width / server_width;
bmp.scaleY = video_height / server_height;
So the final code should be:
bmp.scaleX = video_width / server_width;
bmp.scaleY = video_height / server_height;
addChild( bmp );
Thats all.
The uploaded .JPG file will be just the server_width and server_height values,
but the 'preview' will be video_width and video_height values.
In case you wanna thank me in your code, my site is www.gigabytes.cl :D
Original comment by duyvest...@gmail.com
on 13 May 2011 at 4:12
A release would be nice with this fix included :)
Original comment by czigola@gmail.com
on 2 Feb 2012 at 1:06
Original issue reported on code.google.com by
vspeelman
on 4 Feb 2011 at 9:39Attachments: