I have one air application. Now I want to make custom update (no default, I
want my component) and I made it to download new application version to my app
folder now I need to install it, but I don't know how to invoke newVersion.air
from action script code???
I try with this but doesn't work:
var req:URLRequest = new URLRequest("file:///c:\Documents and
Settings\vvucetic.newVersion.air");
var rld:URLLoader = new URLLoader();
rld.load(req);
fscommand("exec", "file:///c:\Documents and Settings\vvucetic.newVersion.air");