Created
July 29, 2016 01:03
-
-
Save marchbold/c84f892baca81e8484ba99f4153aa766 to your computer and use it in GitHub Desktop.
List documents available using the Cloud Storage ANE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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