How to get all available cameras with actionscript?
I can get the default camera this way:
Camera.getCamera();
But how to get all available cameras connected t开发者_如何学Co my computer with actionscript?
You can use the Camera.names
array to get the list of cameras supported on the system. Camera.getCamera()
returns a reference to the default camera.
Using the Camera.names array, you can call Camera.getCamera(name:String = null)
and pass the name of the camera to it. To specify a name, use the string representation of the zero-based index position within the Camera.names array. For example, to specify the third camera in the array, use Camera.getCamera("2")
.
More info : flash.media.Camera : Adobe Livedocs
Unfortunately only the selected camera (via Adobe Flash Player Settings) is available to ActionScript.
trace(Camera.names);
Don't you have code hinting?
精彩评论