如何知道用户点击了哪个swf?
我使用 Flex 4 编写应用程序的 swf 部分...所以我在容器中加载了一些 swf 文件,我需要的是允许通过单击它来更改该 swf...
我如何检测用户单击了哪个 swf ?
I use Flex 4 for writing swf part of my application... So I have some swf files loaded in container, and what I need is allow to change that swf by clicking in it...
How can I detect in which swf user clicks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您用来加载 swf 的显示组件将触发您可以侦听的事件。尝试
mySwfLoader.addEventListener(MouseEvent.CLICK, onMySwfLoaderClick);
或者,您可以将侦听器添加到包含所有已加载 swf 的容器,并在触发事件时检查事件的当前目标。
The display component that you're using to load the swfs will trigger events that you can listen for. Try
mySwfLoader.addEventListener(MouseEvent.CLICK, onMySwfLoaderClick);
Alternately, you can add your listener to the container that contains all the loaded swfs and check the current target of the event when it's triggered.