Flex:如何从 htmlText 锚点调用 actionscript 函数
有没有办法从 TextArea 组件的 htmlText 属性中定义的锚点调用动作脚本函数。
谢谢
Is there any way to call an action script function from an anchor which defined in TextArea component's htmlText property.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果此锚点是来自标记的 href,您可以分派事件并按如下方式处理它们:
If this anchor is an href from an tag, you can dispatch events and handle them like that:
我得到了答案这里..
i got the answer here..
ExternalInterface 类将为您提供 Javascript 和 Actionscript 之间的通信通道。 使用此类,您可以侦听来自页面 Javascript 的调用,以及分派消息和数据回来。
下面的链接引用的是 AS 3.0。 希望有帮助!
外部接口文档
使用说明
示例代码
The ExternalInterface class will provide you with a communication channel between Javascript and Actionscript. Using this class, you can listen for calls from the page's Javascript, as well as, dispatch messages and data back.
The links below are referencing AS 3.0. Hope that helps!
ExternalInterface Docmentation
Usage Description
Sample Code