hey all, i want to confirm that this...
http://46.4.226.29/camtest/ does not work on a mac, and in chrome 14 beta on the pc? massively simple webcam example, source below... <code> package { import flash.display.Sprite; import flash.events.Event; import flash.events.StatusEvent; import flash.media.Camera; import flash.media.Video; public class Main extends Sprite { private var cam:Camera; private var video:Video; public function Main():void { if (stage) init(); else addEventListener(Event.ADDED_TO_STAGE, init); } private function init(e:Event = null):void { removeEventListener(Event.ADDED_TO_STAGE, init); // entry point cam = Camera.getCamera(); if (cam != null) { //cam.setMode(320, 240, 30, false); cam.setMode(400, 300, 30, false); video = new Video(cam.width, cam.height); video.attachCamera(cam); cam.addEventListener(StatusEvent.STATUS, startcam); addChild(video); } } private function startcam(event:StatusEvent):void { // stuff } } } </code> i've NEVER experienced probs with webcam before, what is going on here? tom. _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

