Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想与 flex as3 和 red5 媒体服务器进行简单的聊天
我的想法是我从 swf 向服务器发送一条消息,然后服务器将它发送给所有 swf(包括发送消息的那个)
我只是不知道如何发送和接收以及如何从服务器接收
有人可以帮忙吗?
你应该去 red5recorder 网站看看是否有教程,但代码相当简单。
NetConnection 类连接到媒体服务器,NetStream 类发送消息,针对 NetConnection 实例设置的事件侦听器捕获来自服务器的响应。
您可以使用URLLoader来回传递数据。有关如何使用 URLLoader 类的示例,请参阅此答案。设置一个计时器并每隔 5 秒左右轮询一次服务器以获取新的聊天消息。如果您想要更好的现实生活聊天,请查看长轮询。
URLLoader