码迷,mamicode.com
首页 > 其他好文 > 详细

AIR打开创建进程的两种方式

时间:2014-08-05 13:47:39      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:des   style   color   io   art   ar   cti   new   

写在这里,方便查阅

NativeApplication.nativeApplication.autoExit = true;// 主窗体关闭也跟着关闭

Debug.trace(‘ToursLocalConnection :: appExePath = ‘ + appExePath);
currFile = new File(appExePath);
//currFile = new File("C:/Users/lenovo/Desktop/LZPC_Test/LZPC/uninstall.exe");
Debug.trace(‘ToursLocalConnection :: currFile.nativePath = ‘ + currFile.nativePath)
//currFile.openWithDefaultApplication();
nativeProcessStartupInfo = new NativeProcessStartupInfo();
nativeProcessStartupInfo.executable = currFile;
nativeProcess = new NativeProcess();
nativeProcess.start(nativeProcessStartupInfo);

 

var file:File = File.documentsDirectory.resolvePath(installPath + ‘uninstall.exe‘);
trace(file);
file.openWithDefaultApplication();

 

AIR打开创建进程的两种方式,布布扣,bubuko.com

AIR打开创建进程的两种方式

标签:des   style   color   io   art   ar   cti   new   

原文地址:http://www.cnblogs.com/cc523/p/3891977.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!