SELECT 和 CANCEL 事件不会被触发,我在一个新项目中这样做是为了确保问题不是来自我的代码的另一部分。
当我在使用 FileReferenceList.Browsing 对话框选择文件后单击“打开”时,“事件触发”永远不会出现在输出中。我也尝试了 FileReference,但它没有用。其他元素的其他事件有效(如 addedToStage、Click、touch 等)。我正在使用 Air 14 和 Flex 4.6.0 在 FlashDevelop 上使用 Air AS3 投影仪项目。
这是 Main.as :
public class Main extends Sprite
{
public function Main():void
{
var asd:FileReferenceList = new FileReferenceList();
asd.addEventListener(Event.SELECT, traceResult);
asd.browse();
trace("FileReferenceList is browsing...");
}
public function traceResult(e:Event):void
{
trace("Event Fired");
}
}
应用程序.mxml:
<?xml version="1.0" encoding="utf-8" ?>
<application xmlns="http://ns.adobe.com/air/application/14.0">
<id>FileReferenceListTest</id>
<versionNumber>1.0</versionNumber>
<filename>FileReferenceListTest</filename>
<name>FileReferenceListTest</name>
<description></description>
<copyright></copyright>
<initialWindow>
<title>FileReferenceListTest</title>
<content>FileReferenceListTest.swf</content>
<systemChrome>standard</systemChrome>
<transparent>false</transparent>
<visible>true</visible>
<minimizable>true</minimizable>
<maximizable>true</maximizable>
<resizable>true</resizable>
</initialWindow>
</application>
在 SetupSDK.bat 中,我使用的 SDK 是:FlashDevelop\Apps\flexairsdk\4.6.0+14.0.0
功能版本是:WIN 14,0,0,176(如在另一个类似问题中提出的那样)。我是 Flash 新手,所以如果您的答案包含编译器更改或不容易找到(或检查)的内容,请准确说明如何操作。谢谢你的时间 :)。