从 xml 深层链接到 Actionscript 中的 open 函数

发布于 2024-09-18 22:09:39 字数 176 浏览 4 评论 0原文

我的 xml 中的 CDATA 中有一般文本,它将内容拉入 Flash 中。这运行良好,我也可以通过这种方式添加图像。但我需要的是将该图像包装在一个标签中,当单击该标签时,将触发我的 Actionscript 2 中的一个函数来启动视频。

有人可以告诉我该怎么做吗?有没有比我现在的想法更好的方法?

谢谢。

I have general text in CDATA in my xml which is pulling in content into Flash. This is working well and I am able to add images this way too. What I need though is to wrap that image in an tag which, when clicked on will fire off a function in my Actionscript 2 to launch a video.

Could someone please tell me how I would go about this? Is there a better way than the way I am thinking right now?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傾城如夢未必闌珊 2024-09-25 22:09:39

我最近在 AS3 中做了这个,但我找到了 AS2 的方法。

测试了一下:

function myFunc(arg:String):Void 
{
     trace ("You clicked me!Argument was "+arg);
}

myTextField.htmlText ='<a href="asfunction:myFunc,Foo">Click Me!</a>';

您只需使用设置为 asfunction 的 href 以及函数名称和要传递的内容。

请参阅:

http://www.adobe.com/support/flash/ action_scripts/actionscript_dictionary/actionscript_dictionary073.html

只是为了表示感谢,我在以下位置找到了初始代码:blog.activepoison.com/?p=25。

I recently did this in AS3 but I found the AS2 way.

Tested it:

function myFunc(arg:String):Void 
{
     trace ("You clicked me!Argument was "+arg);
}

myTextField.htmlText ='<a href="asfunction:myFunc,Foo">Click Me!</a>';

You just use a href that is set to asfunction with a function name and something to pass along.

See:

http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary073.html

Just to give credit I found the initial code at: blog.activepoison.com/?p=25.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文