use InvokeEvent :
import flash.events.InvokeEvent;
import flash.desktop.NativeApplication;
import flash.filesystem.File;
var appDir:File;
NativeApplication.nativeApplication.addEventListener(InvokeEvent.INVOKE,
onInvoke)
function onInvoke (invokeEvent:InvokeEvent):void{
appDir = invokeEvent.currentDirectory;
trace ( appDir.nativePath );
}
CrAzYcAlL
Omar Fouad wrote:
Hey,
Um doing some kiosk database driven Application in AIR, and I need to return
the absolute directory path of the .fla file itself in order to be able to
write files in the same application directory.
I tried:
var path:File.applicationStorageDirectory;
trace(path.nativePath) // it returned some other directory inside "documents
and settings"
any Idea?
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders