Copy link to clipboard
Copied
I'm building a mobile app with Adobe PRO CS6 for IOS. I need to create screenshots and save them in a different folders, that are in a specific tree. The real thing that I don't know how to achive is how can these images be opened through the standard apps of iOS (photos or FileManager).
Using class flash.media.CameraRoll I can save images inside the default Camera folder, but I cannot give neither a name nor a path to my images.
Using class flash.filesystem.FIle I can assign a name and a path, but folders/images are inside the memory space dedicated for the app, and this space cannot be accessed using other iOS apps (Photos, FileBrowser).
NOTE: the final purpose is being able to use sharing tools of other image readers to share images created with my app.
Any suggestion? Thank you very much!
Copy link to clipboard
Copied
IOS
/var/mobile/Applications/<uid>/<filename>.app
/var/mobile/Applications/<uid>/Library/Application Support/<applicationID>/Local Store
/var/mobile/Applications/<uid>/Library/Caches
/var/mobile/Applications/<uid>/Documents
createTempDirectory()
and createTempFile()
/private/var/mobile/Applications/<uid>/tmp/FlashTmp<randomString>
Android
/data/data/
/data/data/<applicationID>/<filename>/Local Store
/data/data/<applicationID>/cache
/mnt/sdcard
/mnt/sdcard
File.createTempDirectory()
and File.createTempFile()
/data/data/<applicationID>/cache/FlashTmp.<randomString>
/mnt/sdcard
Find more inspiration, events, and resources on the new Adobe Community
Explore Now