1

有没有办法从动作脚本文件中调用 .js 文件中的 Js 函数(这里,我的意思是“独立”的 .js 文件,而不是嵌入在 html 标签中的 js 文件)

假设我有一个文件lib.js,在其中,我有两个函数hello(str)bye(str)

现在,我希望我的 Calculator.as 类中的函数sayHello(str)能够执行以下操作:

function sayHello(str:String) : void {
    hello(str)
    ...........
    ...........
    bye(str)
} 

有可能有这样的功能吗?

4

3 回答 3

1

您可以使用 ExternalInterface.call 调用 javascript 函数。

于 2012-05-11T15:29:46.540 回答
1

如果JS文件是用flash加载到站点的,可以使用ExternalInterface.call("hello", str)调用。

于 2012-05-11T15:29:49.643 回答
0

你可以试试这个http://livedocs.adobe.com/flex/3/html/help.html?content=ProgrammingHTMLAndJavaScript_02.html

于 2012-05-12T05:48:27.503 回答