tags:

views:

29

answers:

2

I can get the default camera this way:

Camera.getCamera();

But how to get all available cameras connected to my computer with actionscript?

A: 

Unfortunately only the selected camera (via Adobe Flash Player Settings) is available to ActionScript.

slomojo
But I want to switch across different cameras...
ollydbg
Sorry, you don't have access to that in AS3, only the user can switch cameras.
slomojo
A: 

trace(Camera.names);

Don't you have code hinting?

Sean Fujiwara