Flex 4 监听 JavaScript
我目前正在使用ExternalInterface 从Flex 调用JS 函数。
是否可以反过来做同样的事情:当 JS 中执行某个触发器时,让 Flex 执行一个函数?
我想要一个带有 HTML 按钮的 Flash 应用程序,当按下按钮时,可以调用 Flex 应用程序内的函数。
谢谢。
I am currently using ExternalInterface to call JS functions from Flex.
Is it possible to do the same the other way around: have Flex execute a function when a certain trigger is executed in JS?
I want to have a Flash app with buttons in HTML that when pressed call functions inside the Flex app.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ExternalInterface.addCallback() 是一种方法。这是一个示例。http://help.adobe.com/en_US/ flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7e92.html,它通过onchange事件调用flex函数,请尝试按钮的onclick事件。
ExternalInterface.addCallback() is a way. Here is an example.http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7e92.html, it call flex function by onchange event, try onclick event of your button instead.