黑铁时代
Programing is not only one kind of technology, but also one kind of art.
摘要: 一 Flash端代码public var socket:Socket; public function init():void { socket = new Socket(); socket.connect( 'localhost', 12345 ); // 通过socket链接服务器 // 监听链接,错误和收到数据的事件对象 socket.addEventListener( Event.CONNECT, this.onConnect ); socket.addEventListener( IOErrorEvent.IO_ERROR, this.onError ); ... 阅读全文
posted @ 2013-02-24 17:19 黑铁时代 阅读(395) 评论(0) 推荐(0) 编辑