【发布时间】:2010-12-31 18:52:47
【问题描述】:
我有
<supportedProfiles>extendedDesktop</supportedProfiles>
在我的 Application.xml 文件中,但以下内容会产生此错误:
错误 #1034:类型强制失败:无法将 flash.filesystem::File@619de81 转换为 flash.desktop.NativeProcessStartupInfo。
<html>
<head>
<title>New Adobe AIR Project</title>
<script type="text/javascript" src="lib/air/AIRAliases.js"></script>
<script type="text/javascript" src="lib/air/AIRIntrospector.js"></script>
<script type="text/javascript" src="lib/jquery/jquery-1.4.2.js"></script>
<script>
function Init(){
var myAIRFile = new air.File('C:/Program Files (x86)/Windows NT/Accessories/Wordpad.exe');
var myProcess = new air.NativeProcess();
var myStartup = new air.NativeProcessStartupInfo();
myStartup.executable = myAIRFile;
myProcess.start(myAIRFile);
}
</script>
</head>
<body onload="Init();">
</body>
</html>
【问题讨论】:
标签: air