从 xml 深层链接到 Actionscript 中的 open 函数
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最近在 AS3 中做了这个,但我找到了 AS2 的方法。
测试了一下:
您只需使用设置为 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:
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.