Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Flash 的 ActionScript3 有什么方法可以与 AMD 模块中定义的 JavaScript 函数进行通信 - 即。不直接暴露在全局范围内?
在全局范围内创建一个 JS 函数,然后调用 AMD 模块内的函数。
-或者-
在外部接口调用中编写全局js函数:
ExternalInterface.call( "function uniqueFunctionName(){ myModule.foo(); }" );