gpt4 book ai didi

apache-flex - 柔性 : How to call an actionscript function from htmlText anchor

转载 作者:行者123 更新时间:2023-12-04 02:41:04 24 4
gpt4 key购买 nike

有什么方法可以从 TextArea 组件的 htmlText 属性中定义的 anchor 调用 ActionScript 函数。

谢谢

最佳答案

如果这个 anchor 是来自标签的 href,您可以分派(dispatch)事件并像这样处理它们:

<mx:Script>
<![CDATA[
private function linkHandler(e:TextEvent):void
{
if (e.text == "test")
trace("test called")
}
]]>
</mx:Script>
<mx:creationComplete>
<![CDATA[
textArea.htmlText="<a href='event:test'>Link!</a>";
]]>
</mx:creationComplete>

<mx:TextArea id="textArea" link="linkHandler(event)" />

关于apache-flex - 柔性 : How to call an actionscript function from htmlText anchor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/871325/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com