Dear Tom,
I recently developing an AR apps and my clients also face the same problem.
I asked them to update their flash player to 10.3.183.7


Check MAC flash player version by visiting the page -
http://www.adobe.com/software/flash/about/

That solved the problem.

The probable cause for the same may be due to latest OS upgrade and flash
player upgrade.


Warm Regards
Deepanjan Das
W: http://deepanjandas.wordpress.com
|| Om Manasamarthadata Shri Aniruddhaya Namah
||<http://www.manasamarthyadata.com/>
*Think of the environment before printing this email
__________________________________________________________________________
*


On Mon, Sep 19, 2011 at 4:34 AM, tom rhodes <tom.rho...@gmail.com> wrote:

> 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
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to