打印

[AIR] 使用flash设置air1.1开发出问题求助!!!

我已经按照这里: http://kb.adobe.com/selfservice/ ... 03682&sliceId=2
的介绍设置了。
但是在发布的时候还是出现了
“Error creating AIR file.
Double-byte characters are not allowed in SWF file name or file path.”
的提示,不允许发布程序。

请求帮助!
原来是我把路径弄错了。汗……
但是现在还是不正常。改在另一个英文路径下重新弄了之后,仍然不能创建air文件,错误提示是:
“Error creating AIR file.
Unknown error.”。
但测试影片时成功,而且能够输入中文。
我的xml配置文件是这样的:
复制内容到剪贴板
代码:
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<application xmlns="http://ns.adobe.com/air/application/1.1">
  <id>com.adobe.example.AIR1-1Test</id>
  <version>1.0</version>
  <filename>AIR1_1Test</filename>
  <description>
    <text xml:lang="zh">中文测试</text>
  </description>
  <name>
    <text xml:lang="zh">中文测试</text>
  </name>
  <copyright/>
  <initialWindow>
    <content>AIR1_1Test.swf</content>
    <systemChrome>standard</systemChrome>
    <transparent>false</transparent>
    <visible>true</visible>
  </initialWindow>
  <icon/>
  <customUpdateUI>false</customUpdateUI>
  <allowBrowserInvocation>false</allowBrowserInvocation>
</application>
是不是这里的问题呢?