向其他用户动态通知(actionscript 3)
我需要你的帮助。
用户A和用户B加载了相同的swf文件。 我想要的:例如,用户A单击按钮,用户B动态看到通知“用户A单击按钮”。
请帮助我。 非常感谢您的帮助!
I need some of your help.
User A and user B have same loaded swf file.
What I want: For example, user A clicks button, and user B see notification "User A clicked button" dynamically.
Help me please.
Thanks a lot for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Flash 无法直接处理这种情况。例如,您必须使用 PHP 或 Perl 来实现一些服务器后端。
然后让 SWF A 在用户 A 单击按钮时向服务器发送请求,并保存消息“用户 A 单击按钮”(或您想要的任何其他内容)。然后 SWF B 可以每隔 X 秒检查一次是否有可用的消息。如果是,则显示它。
Flash doesn't handle this kind of scenario out of the box. You'll have to implement some server backend using PHP or Perl for example.
Then have the SWF A sends a request to the server when user A clicks a button, and save the message "User A clicked button" (or anything else you want). Then SWF B can check every X seconds if some message is available. If it is, display it.