how to get a list of all cameras of the user
I want to get the list of all user cameras s开发者_如何学Co that he could choose from a dropdown from which camera to broadcast
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.
精彩评论