ExternalInterface.call问题,请大家指教,在 线等

我自己做了一个Flex .mxml 文件调用html的javascript例子,因为flex3.0现在不能取得本地文件的完整路径,所以想用Flex调用javascript实现,于是写了下面的代码,代码片段如下:

.mxml文件:
   ExternalInterface.call("BrowseFilePath");

.html文件:
   <input type="file" id="fil" style="display:none" onpropertychange="filterType()"/>
<script>

function BrowseFilePath(){
document.getElementById('fil').click();
return;
}
</script>

这样就能弹出html的选择文件框,但是有个小问题,flex脚本运行事件有默认限制,不知道怎么样才能把ExternalInterface.call的运行和javascript函数断开,请高 手 指教

你可能感兴趣的:(JavaScript,html,脚本,Flex)