views:

110

answers:

1

I want to get the list of all user cameras so that he could choose from a dropdown from which camera to broadcast

+3  A: 

Simply:

 import flash.media.Camera;

and than you can databind the dropdown to Camera.names

---- edit ----

Just to clear this up a bit, this kind of databinding will not find new cameras. You would actually need to get the value of Camera.names yourself when needed, to force the new search.

Robert Bak