How do I detach a webcam? If I use this snippet (from http://newmovieclip.wordpress.com/2006/05/26/take-a-webcam-snapshot-in-flex-20-beta-3/)
public function insertWebcamVideo():void{
...
var camera:Camera = Camera.getCamera();
video = new Video(camera.width*2, camera.height*2);
video.attachCamera(camera); /* Attached */
...
}
What is the reverse? There is no video.detachCamera() method, and
video.clear() doesn't seem to do anything. Any help would be
appreciated. Thanks.
Evan

