I am using flash professional for take photo from webcam. My requirement is that I want to start camera and after 2 sec it will take photo and turn off the camera.
I did that and its working good in all browser except IE.
Actually, I am display:none that flash object after photo take, and it will automatically turn off camera in browser except IE.
If I display:none camera flash object, it will not turn off my webcam.
So, can you please help me in how to turn off web camera in IE.
Thank you.
I figured out.
I called action script function from java script.
In action script function I just pass null to attachCamera function like this way – “video.attachCamera(null);”
null will turn off camera.
and its working in all browser.