Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marchbold/c84f892baca81e8484ba99f4153aa766 to your computer and use it in GitHub Desktop.
Save marchbold/c84f892baca81e8484ba99f4153aa766 to your computer and use it in GitHub Desktop.
List documents available using the Cloud Storage ANE
if (CloudStorage.service.documentStore.isAvailable)
{
var documents:Vector.<Document> = CloudStorage.service.documentStore.listDocuments();
for each (var document:Document in documents)
{
trace( "document: "+document.filename +" ["+document.url+"]" );
}
}
// com.distriqt.CloudStorage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment