Hi,
I made audio recorder application in as3 flash.it works fine in a flash and i save that audio file using fileReference in as3. Code is as folllow-

function recordComplete(e: Event = null): void {
var fileTemp = File.applicationStorageDirectory.resolvePath("SAME ER/");
//if (fileTemp.exists) {
fileReference.save(recorder.output, "recording.mp3");
recButton.addEventListener(MouseEvent.CLICK, startRecording);
//}
}

When record completed,it shows save dialogue box in pc.
But when i installed this app in mobile.Audio file is not saved. Save dialogue box doesn't appear in mobile ."app stopped working" problem appears.
If Anyone knows solution to this problem,then please tell me.thanks in advance to each and everyone.