Has the default applicationStorageDirectory changed?
I've run a few tests while adding files in CC in the Included Files tab. Ive tried adding a file and a folder with a file.. no luck with accessing either. Trying with AIR 29.
var f:File = File.applicationStorageDirectory.resolvePath("/assets/music.mp3");
var resultUrl:String = f.url; // This works to load with a URLLoader
var resultPath:String = f.nativePath; // This works to load with a FileStream operation
trace(resultPath);
var req:URLRequest = new URLRequest(resultUrl);
var mySound:Sound = new Sound();
mySound.load(req);
mySound.play();
