Reputation: 71258
I want to get the list of all user cameras so that he could choose from a dropdown from which camera to broadcast
Upvotes: 1
Views: 1314
Reputation: 4236
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.
Upvotes: 5