0

这是 AS3 部分:

import flash.net.FileReference;
import flash.events.Event;
import flash.external.ExternalInterface;
import flash.system.Security;

Security.allowDomain( "*" );

// file reference:
var file:FileReference = new FileReference();
ExternalInterface.addCallback( "bFile" , choose );

function choose():void{
    ExternalInterface.call( "alert( 'browse' )" );
    file.browse();
}

HTML部分:

<object width="1px" height="1px">
<param name="movie" value="./ftest/uploader.swf">
<embed width="1px" height="1px" allowscriptaccess="always" id="uploader" src="./ftest/uploader.swf">
</object>

JS部分:

$( "#uploader" )[ 0 ].bFile();

更新: - [通过单击按钮调用的操作]

$( "#uploader" )[ 0 ]返回对象(就像我使用的一样getElementById)。

触发时,会抛出带有“broswe”的警报,因此,我知道choose()它被调用了。

它没有进一步。

我在每个浏览器的控制台中都得到了这些行:未捕获的错误:在 NPObject 上调用方法时出错。

你能帮我弄清楚这里有什么问题吗?

4

1 回答 1

1

相信您的问题与安全相关,必须调用浏览方法以直接响应用户交互(KeyboardEvent 或 MouseEvent)。阅读文档中有关此内容的具体详细部分:http: //help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/FileReference.html#browse ()

我引用的文档中的部分:

在 Flash Player 10 和 Flash Player 9 Update 5 中,您只能成功调用此方法以响应用户事件(例如,在鼠标单击或按键事件的事件处理程序中)。否则,调用此方法会导致 Flash Player 引发错误异常。

于 2012-05-28T03:27:59.387 回答