No camera access in Flash 11 on OS X Lion

Hi,
I've looked around and haven't found seen many issues like mine but I'm hoping I'm not the only one.
I just upgraded from 10.3 to 11 and no matter what I did my video camera (built in isight) on macbook pro 2007 never turned on. Even though it asks me for permission to use it and I allow it too.
Everything worked just fine in 10.3
Here's what I tried:
1. Uninstall 10.3 using the uninstall tool provided by Adobe
2. Install 11 using the latest download from Adobe
3. Uninstalling the Google Talk plugin (I saw posts on the net about a possible issues..but i never had this with 10.3)
4. Rebooting
Still nothing..black screen and no cam access.
I always use http://www.koowy.com for video cam conferences and had to go back to 10.3 to get my cam to work. I reinstalled Google Talk plugin and it all works fine with 10.3
Hopefully, this is a known issue and will be fixed.
I'm on OS X Lion, MacBook Pro (2007), Both FireFox 7.01 and Chrome and Safari 5.1 are effected.
Playing videos works perfectly it's just cam acess that seem broken.
Ultimately, I am back at 10.3 for now.
If there is any other information I can provide, let me know.
Thanks,
- Tim

Here is my System information:
Like I said 10.3 is working fine but 11 won't turn on the camera even after allowing access in the popup dialog.
Anyone on 11 have their camera working?
Operating System
Mac OS X 10.7.1
Machine
Model Name:          MacBook Pro
  Model Identifier:          MacBookPro3,1
  Processor Name:          Intel Core 2 Duo
  Processor Speed:          2.4 GHz
  Number of Processors:          1
  Total Number of Cores:          2
  L2 Cache:          4 MB
  Memory:          4 GB
  Bus Speed:          800 MHz
Display
Chipset Model:          GeForce 8600M GT   
  Type:          GPU
  Bus:          PCIe
  PCIe Lane Width:          x16
  VRAM (Total):          256 MB
  Vendor:          NVIDIA (0x10de)
  Device ID:          0x0407
  Revision ID:          0x00a1
  ROM Revision:          3175
Built-in ISight
Product ID:          0x8502
  Vendor ID:          0x05ac  (Apple Inc.)
  Version:          1.55
  Serial Number:          C06F6777316DDC29 (03.00)
  Speed:          Up to 480 Mb/sec
  Manufacturer:          Apple Inc.
  Location ID:          0xfd400000 / 3
  Current Available (mA):          500
  Current Required (mA):          500

Similar Messages

  • [New_Feature_Requirement] [iOS 8] Detecting permissions for camera access

    Here is the feature request: Feature#3837401 - [New_Feature_Requirement] [iOS 8] Detecting permissions for camera access
    Problem: The camera privacy control is now required by iOS 8 for all regions. With iOS 8 any application that use camera encountered with a dialog asking for permission.
    http://useyourloaf.com/blog/2014/07/16/ios-8-camera-privacy-settings.html
    But we cannot detect permission for camera access by AIR.
    StatusEvent event not firing by AIR: "Note: This event is not dispatched on the AIR platform. It is used only in Flash Player."
    Camera - Adobe ActionScript® 3 (AS3 ) API Reference
    So, if user don't allow use camera our application even cannot detect that. It could make application useless. Also it could cause problems with our applications in AppStore.
    Please consider to provide some way to handle camera access. It could be StatusEvent like with Flash Player.

    "Do Not Put iOS8 on an iPhone 4S"
    http://gizmodo.com/dont-put-ios-8-on-your-iphone-4s-1635763610?utm_medium=referr al&utm_source=pulsenews

  • Empty camera names in Flash Player with Google Chrome

    So, it seems we got another problem with devices (cameras and microphones) in Flash Player integrated with Google Chrome (PPAPI). Many Flash developers can remember clickjacking problem and ugly fix for this issue implemented in Google Chrome. For now, if you have some application that uses camera or microphone, Google Chrome users must allow access to their devices twice: for Flash Player (small window centered in Flash-object) and for Google Chrome (gray panel with buttons under address bar).
    Until recently the whole process of granting camera access looked like this:
    Application want to attach camera to Video object or NetStream.
    Even without permission you can get camera names and populate some UI components with them.
    Flash Player show security panel with "Allow" and "Deny" buttons.
    Google Chrome show it's own security panel, so both security panels are visible at the same time.
    Users press "Allow" button in Flash Player security panel.
    Now you have false for camera.muted property, but camera show zero FPS, because access is still denied in browser.
    Users press "Allow" button in browser security panel.
    Win! You have access granted everywhere.
    Of course, that second security panel of Google Chrome is a real pain. Users just don't notice it. Flash developers handled this issue with hints inside application and FAQ pages. But now we have another big problem.
    Recently the process of granting camera access changed to this:
    Application want to attach camera to Video object or NetStream.
    You can't get camera names until access granted in browser. There will be just spaces (" ", symbol with code 32) in camera.name property.
    Flash Player show security panel with "Allow" and "Deny" buttons.
    Google Chrome will not show it's security panel until access granted in Flash Player.
    Users press "Allow" button in Flash Player security panel.
    Now you have false for camera.muted property, but camera show zero FPS and have no name, because access is still denied in browser.
    Google Chrome show it's own security panel.
    Users press "Allow" button in browser security panel (this panel shown twice for some reason).
    Now you have access granted everywhere, but devices still have just spaces instead of real names.
    Unfortunately, AS3 will not update camera names after access granted in browser. Camera names are empty event in Flash Player settings window before browser access granting. So it's impossible now to get camera names in Flash application running in Google Chrome without reloading. User need to grant access in browser first, than reload application and only after that we can get camera names in AS3. I have tried to use flash.media.scanHardware() to refresh camera names, but it seems it's not working.
    Also I have created a small example and posted it online. You can test it by yourself in Google Chrome. Just don't forget to clear your choice each time. You need to remove "http://wonderfl.net:80" entry from list on chrome://settings/contentExceptions#media-stream to clear your prevoius choice.
    Also I got similar complaints from Opera users.
    Here is my code:
    package
        import flash.display.Sprite;
        import flash.display.StageAlign;
        import flash.display.StageScaleMode;
        import flash.events.Event;
        import flash.events.TimerEvent;
        import flash.media.Camera;
        import flash.media.Microphone;
        import flash.media.Video;
        import flash.media.scanHardware;
        import flash.text.TextField;
        import flash.utils.Timer;
        public class BrowserPermissionTest extends Sprite
            private var output:TextField;
            private var timer:Timer;
            public function BrowserPermissionTest()
                super();
                addEventListener(Event.ADDED_TO_STAGE, addedToStageHandler);
            private function addedToStageHandler(event:Event):void
                removeEventListener(Event.ADDED_TO_STAGE, addedToStageHandler);
                stage.scaleMode = StageScaleMode.NO_SCALE;
                stage.align = StageAlign.TOP_LEFT;
                output = new TextField();
                output.border = true;
                output.multiline = true;
                output.wordWrap = true;
                output.x = output.y = 10;
                addChild(output);
                updateView();
                stage.addEventListener(Event.RESIZE, stage_resizeHandler);
                var i:int;
                var numCameras:int = 0;
                var numMicrophones:int = 0;
                if (Camera.isSupported)
                    var cameraNames:Array = Camera.names;
                    numCameras = cameraNames ? cameraNames.length : 0;
                    if (numCameras > 0)
                        log("Cameras:");
                        for (i = 0; i < numCameras; i++)
                            var cameraName:String = cameraNames[i];
                            log((i + 1) + ". \"" + cameraName + "\"");
                    else
                        log("Camera not found.");
                else
                    log("Camera is not supported.");
                log("");
                if (Microphone.isSupported)
                    var microphoneNames:Array = Microphone.names;
                    numMicrophones = microphoneNames ? microphoneNames.length : 0;
                    if (numMicrophones > 0)
                        log("Microphones:");
                        for (i = 0; i < numMicrophones; i++)
                            var microphoneName:String = microphoneNames[i];
                            log((i + 1) + ". \"" + microphoneName + "\"");
                    else
                        log("Microphone not found.");
                else
                    log("Microphone is not supported.");
                log("");
                if (numCameras > 0 || numMicrophones > 0)
                    if (numCameras > 0)
                        var defaultCamera:Camera = Camera.getCamera();
                        var video:Video = new Video(1, 1);
                        addChild(video);
                        video.attachCamera(defaultCamera);
                        defaultCamera.muted ? devicesMutedInFlashPlayer() : devicesUnmutedInFlashPlayer();
                    else if (numMicrophones > 0)
                        var defaultMicrophone:Microphone = Microphone.getMicrophone();
                        defaultMicrophone.setLoopBack(true);
                        defaultMicrophone.muted ? devicesMutedInFlashPlayer() : devicesUnmutedInFlashPlayer();
                    else
                        log("No devices found for test.");
            private function devicesMutedInFlashPlayer():void
                log("Devices are muted in Flash Player.");
                log("Starting permission check timer...");
                timer = new Timer(100);
                timer.addEventListener(TimerEvent.TIMER, flashPlayerPermissionTimer_timerHandler);
                timer.start();
            private function flashPlayerPermissionTimer_timerHandler(event:TimerEvent):void
                var defaultCamera:Camera = Camera.getCamera();
                if (!isDevicesMutedInFlashPlayer())
                    timer.stop();
                    timer.removeEventListener(TimerEvent.TIMER, flashPlayerPermissionTimer_timerHandler);
                    timer = null;
                    devicesUnmutedInFlashPlayer();
            private function devicesUnmutedInFlashPlayer():void
                log("Devices are unmuted in Flash Player.");
                isDevicesMutedInBrowser() ? devicesMutedInBrowser() : devicesUnmutedInBrowser();
            private function devicesMutedInBrowser():void
                log("Devices are muted in browser.");
                log("Starting permission check timer...");
                timer = new Timer(100);
                timer.addEventListener(TimerEvent.TIMER, browserPermissionTimer_timerHandler);
                timer.start();
            private function browserPermissionTimer_timerHandler(event:TimerEvent):void
                scanHardware();
                if (!isDevicesMutedInBrowser())
                    timer.stop();
                    timer.removeEventListener(TimerEvent.TIMER, browserPermissionTimer_timerHandler);
                    timer = null;
                    devicesUnmutedInBrowser();
            private function devicesUnmutedInBrowser():void
                log("Devices are unmuted in browser.");
            private function isDevicesMutedInFlashPlayer():Boolean
                var cameraNames:Array = Camera.names;
                var numCameras:int = cameraNames ? cameraNames.length : 0;
                if (numCameras > 0)
                    var defaultCamera:Camera = Camera.getCamera();
                    return defaultCamera.muted;
                else
                    var microphoneNames:Array = Camera.names;
                    var numMicrophones:int = microphoneNames ? microphoneNames.length : 0;
                    if (numMicrophones > 0)
                        var defaultMicrophone:Microphone = Microphone.getMicrophone();
                        return defaultMicrophone.muted;
                return true;
            private function isDevicesMutedInBrowser():Boolean
                var cameraNames:Array = Camera.names;
                var numCameras:int = cameraNames.length;
                for (var i:int = 0; i < numCameras; i++)
                    var cameraName:String = cameraNames[i];
                    if (cameraName != " ")
                        return false;
                var microphoneNames:Array = Microphone.names;
                var numMicrophones:int = microphoneNames.length;
                for (i = 0; i < numMicrophones; i++)
                    var microphoneName:String = microphoneNames[i];
                    if (microphoneName != " ")
                        return false;
                return true;
            private function log(text:String):void
                output.appendText(text + "\n");
            private function updateView():void
                output.width = stage.stageWidth - 2 * output.x;
                output.height = stage.stageHeight - 2 * output.y;
            private function stage_resizeHandler(event:Event):void
                updateView();
    So, I wonder if it's a bug or some kind of new security feature implemented by Google Chrome team? Maybe someone already faced this problem and can share more info about it.
    For now it looks like modern browsers killing Flash with all that features and ugly solutions.
    PS: You can find some silly mistakes in my message. Sorry for my English.
    Updated code to check microphones also.

    After couple of tests I have found strange behavior of PPAPI Flash.
    The test was made with two SWFs working simultaneously on the same page. The first one was asking for device access like some regular application (by calling video.attachCamera). The second SWF was created/removed in cycle by JavaScript to avoid this thing:
    Scanning the hardware for cameras takes time. When the runtime finds at least one camera, the hardware is not scanned again for the lifetime of the player instance.
    I have made both SWFs to get all devices names and post them to screen. So I was able to see all changes regarding devices in first SWF (before and after permission granted) and in refreshable second SWF (each second). Also I have used scanHardware in both SWfs.
    I have found that second (refreshable) SWF got correct list of devices, but first one got only microphones. Camera names was empty.
    So it looks like we have another bug of PPAPI Flash here. I don't have another explanation for this. I mean, why do they need to update only microphones, but not cameras?

  • Is there a way to transfer photos from a point and shoot camera to a flash drive via the iPad?

    Is there a way to transfer photos from a point and shoot camera to a flash drive via the iPad?

    No.

  • Disk access LED flashing regularly

    Hi,
    I have a recent (<2 months) installation of the latest Arch Linux on an AMD64 computer and I have noticed that the HDD access LED flashes shortly every 2-3 secs. My partitions are formatted in Ext4 and this flashing occurs even when I am just in the console and not using the machine.
    Is this normal or should I start worrying about rootkits etc?
    My thanks in advance.

    neok wrote:
    Hi,
    I have a recent (<2 months) installation of the latest Arch Linux on an AMD64 computer and I have noticed that the HDD access LED flashes shortly every 2-3 secs. My partitions are formatted in Ext4 and this flashing occurs even when I am just in the console and not using the machine.
    Is this normal or should I start worrying about rootkits etc?
    My thanks in advance.
    My thanks for the replies, I tried iotop and enabling block-dump but both will not work, I think its because I am using a custom compiled kernel and I don' have accounting enabled, apparently. But I will be looking into this soon, perhaps rebooting with the Arch kernel.

  • How do I turn off the Camera access from the lock screen

    how do I turn off the Camera access from the lock screen ?

    Only by hiding the camera via Restrictions. Settings>General>Restrictions. That hides the camera when unlocked unless you go to Restrictions  and unset that Restriction. That is not way currently from just preventing camera access only from the lock screen

  • WCV200 Camera using Adobe Flash Encoder

    Hi all,
    I have searched the forum for this topic and come up with no treads. 
    Is it possible to use the WCV200 camera with  Adobe Flash Encoder? I am hopeing to use this to feed the stream into the Flash Server so I can put it onto a website. 
    Thanks,
    Andy

    I believe this can’t be done. You can only use the camera using the web utility or the camera utility software to view the video of the camera especially via live feed.

  • WHY is Adobe Corporation discriminating against lower-income people by preventing access to Flash?

    Please Help! -- I tried to upgrade FLASH PLAYER, but I have an older MAC laptop OS X 10.4 = Version 4.1.3 (4533.19.4). 
    I need to UPGRADE Flash Player; however it's not available -- Recently, I cannot watch some videos or access particular websites.
    I'm a teacher, and CAN'T AFFORD to buy  a new computer at this time.
    > Can Adobe Corp. please help by offering an expanded range of UPGRADE support ??
    WHY IS ADOBE CORP. DISCRIMINATING AGAINST LOWER-INCOME PEOPLE, APPLE USERS and PRIOR COMPUTER VERSIONS -- by preventing access to Flash ???

    How many times are you going to post the same thing??

  • Can your creative cloud account give you access to Flash Builder 4.6

    Can your creative cloud account give you access to Flash Builder 4.6? 4.7 got rid of the design view, I need to get use out of the design view. Thanks

    I wonder why when it would be a downgrade form the version 4.7 my subscription give me access to. There does not seem to any training that uses 4.7 I was lucky enough to find some that uses 4.6 and it covers things about the design view. I thinking since a lot of the material to learn it is kind-a-outdated (and still referrers a lot to design view) that it would be good to learn it with access to design view. This way I will understand what they mean and can distinguish between features. Thanks

  • My Led flash light switch on all the time,anybody got the solution.i tried 3 things but it couldn't solved the problem. 1.settings-accessibility-LEd flash off   2. Switch off the phone for several times.  3.press the home button n power button until the

    My Led flash light switch on all the time,anybody got the solution.i tried 4 things but it couldn't solved the problem. 1.settings-accessibility-LEd flash off   2. Switch off the phone for several times.  3.press the home button n power button until the apple logo appears.  4.reset my all settings.

    My Led flash light switch on all the time,anybody got the solution.i tried 4 things but it couldn't solved the problem. 1.settings-accessibility-LEd flash off   2. Switch off the phone for several times.  3.press the home button n power button until the apple logo appears.  4.reset my all settings.

  • Xoom Front Camera Access?

    From what im reading on the forums there is no support yet for front camera access on the Xoom (Droid 3.0) under AIR 2.6. I have a project that requires it. Given this has to go out on both iOS and Android I would love to build it in air and not write two separate apps. Is there an ETA on when access to the front camera might be accessable? The app is still internal as an alpha but I need to have a working demo within a few weeks. With a public date in a few months. Is there any chance of getting alpha/beta compilers/packers to test code on? Or am I going to need to scrap this and do it with the native sdks?

    I'm interested in this as well. I have a project that is pretty much complete, i'm just waiting for official front facing camera support to put the application on the market.
    I was following a topic months ago where someone explained that the only reason Air for Android didn’t support the front facing camera was simply because the native android OS at the time (froyo) did not technically support it. However, since Gingerbread android OS has had official font facing camera support, and now we’re on Honeycomb. And Air still does not seem to support it. If i do a Camera.names it only returns default. Anyone have any idea why this isn't higher up on adobe's priority list for air for android?

  • How can I Access the Flash "Slide class" using flex and ActionScript 3?

    Hi,
    I hope someone can help me solve a problem...
    I'm using the flex SwfLoader to load a flash side
    presentation as follows...
    <mx:SWFLoader id="ss_slides" source="ss_slides.swf"
    width="320" height="240"/>
    I would like to access the flash "Slide Class" using flex so
    I can make the following call...
    Slide.gotoNextSlide();
    Anyone know how I can do that?
    Would it be through the SwfLoader Object?
    Is there another way?
    F.Y.I. Here is a snippets about the Slide class from the
    Flash 8 help...
    Using the Slide class (Flash Professional only)
    You use the methods and properties of the Slide class to
    control slide
    presentations you create using the Screen Outline pane for a
    Flash Slide
    Presentation, to get information about a slide presentation
    (for example, to
    determine the number of child slides contained by parent
    slide), or to navigate
    between slides in a slide presentation (for example, to
    create "Next slide" and
    "Previous slide" buttons).
    You can also use the built-in behaviors that are available
    in the Behaviors
    panel to control slide presentations. For more information,
    see Adding controls
    to screens using behaviors (Flash Professional only) in Using
    Flash.
    Thanks,
    Chris S.

    Hi Chris,
    You cannot access the methods of the Flash 8 movie from Flex.
    And you can't do it the other way around either.
    The only way to communicate is to create a LocalConnection on
    each side.
    M.

  • Problem with "stop playing causing camera light to flash

    Since ipgrading to ios 5.1 I se that Apple took away the Sleep ipod opton for the timer and relaced it with "stop playing".  Unfortunately, wen the timer reaches zero, the phone stops playing but the camera flas starts flashing until I unlock the phone.  Besides being annoying, this obviously defeats the purpose of resting the phone and saving battery life.  Any suggestions?  Note: I do have a flaslight app on the phone in case that makes a difference.

    Thanks again
    I have removed the keyframes in frame 2 and 6 on all the layers (please seen new pic below), however the problem still persists.
    Here is my code on my actions layer:
    stop();
    toolbar.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag);
    function fl_ClickToDrag(event:MouseEvent):void
        toolbar.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop);
    function fl_ReleaseToDrop(event:MouseEvent):void
        toolbar.stopDrag();
    about.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_4);
    function fl_ClickToGoToAndPlayFromFrame_4(event:MouseEvent):void
        gotoAndPlay(2);
    latestnews.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_6);
    function fl_ClickToGoToAndPlayFromFrame_6(event:MouseEvent):void
        gotoAndPlay(3);
    services.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_7);
    function fl_ClickToGoToAndPlayFromFrame_7(event:MouseEvent):void
        gotoAndPlay(4);
    portfolio.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_8);
    function fl_ClickToGoToAndPlayFromFrame_8(event:MouseEvent):void
        gotoAndPlay(5);
    contact.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_9);
    function fl_ClickToGoToAndPlayFromFrame_9(event:MouseEvent):void
        gotoAndPlay(6);
    As you can see the code looks pretty correct to me. Ignore the code at the top, that is just for a draggable graphic on the page.
    Any clues from the code??

  • When I use the camera with the flash it is way to bright is there a way to adust that?

    when I use the camera with the flash it is way to bright is there a way to adust that?

    Only way I can figure is having double entries one with singular + some unique field, (maybe called Siri), then making a Smart group for one or both.

  • I upgraded to IOS 5.1 and the quick camera access has ceased working - any ideas?

    I upgradet to IOS 5.1 and the quick camera access ceased working - any ideas?

    Press the camera icon and slide it up.

Maybe you are looking for

  • How do I delete music from the cloud that I did not purchase

    I have several songs on my iTunes library that I did not purchase. how do I delete these? There are some songs that are objectionable. Thanks

  • How do I configure Time Capsule to work with 8 port unmanaged switch?

    This is what I want to end up with. cable modem Time Capsule                                                         wireless network           8 port unmanaged switch TRENDnet TEGS80G                                                                  

  • Displaced content from sender RFC in payload - PI 7.0

    Hello, we have a strange behaviour here. After implementing a scenario with  HTTP->PI->RFC which works fine transporting a structure to an R/3, we wanted implement another scenario RFC->PI->HTTP (RFC is async). Problem when testing it: The RFC hands

  • A Few Basic Battery Questions

    Okay. I'm kinda new to laptops and completely new to Macs. I know you're not supposed to leave your laptop plugged in all the time. But, will plugging it in for a few minutes then unplugging it again to transport it hurt the battery? And what is heal

  • Is there a way to access ABAP OO instances from a batch job report

    Hello, I am looking for a way to access ABAP OO instances from a batch job report. My circumstances are the following: I have got some ABAP OO coding that identifies other objects (class instances) that have to be processed (they have a DoIt method t