FlashSocket.IO icon indicating copy to clipboard operation
FlashSocket.IO copied to clipboard

Library to help Flash, Flex and ActionScript clients connect to Socket.IO servers.

Results 13 FlashSocket.IO issues
Sort by recently updated
recently updated
newest added

Hi, my team would like to use this but we noticed there isn't a license included in the project. Would you mind posting an MIT or other simple open source...

Just realized a lot has happened in the development of this project since I stopped watching flash. It appears many improvements have been made and I'd like to make sure...

Hi! How to achieve load policyUrl? CLIENT ``` this.client.init(*************, 3004,null, function():void{ client.addEventListener(ClientEvent.IO_ERROR,onError); client.addEventListener(ClientEvent.SECURITY_ERROR,onError); client.addEventListener(ClientEvent.MESSAGE,onMessage); Log("Connected "); dispatchEvent(new Event(Event.CONNECT)); }); ``` SERVER DEMON ON NODEJS ``` var net = require('net'); console.log("Secur...

When the server restarts, the client losses the connection and doesn't reconnect. Since a disconnection event is not thrown, there is no way to know that the client disconnected and...

Replaced the old AS3 JSON library reference with the new native JSON Object introduced with Flash Player 11.

This library works great for socket.io v0.9 and node v0.8.x, but I've upgraded my node version and found that socket.io will stall after "handshake authorized". In testing the demo code...

Hi, i'm trying to setup FlashSocket.IO but i never receive "connect" event. This is the Debug: info: handshake authorized RABQ67ORVyDDcCLbUP7x debug: setting request GET /socket.io/1/flashsocket/RABQ67ORVyDDcCLbUP7x debug: set heartbeat interval for...

I m trying to get this work since a week still no luck. And I didnt find any tutorial or sample using the latest version of socket.io. Plz upload a...

Hi, When i use socket = new FlashSocket("localhost:8080/socket"); I get discovery error Node snippet: (In app.js) app.get('/socket', socket.handle); app.post('/socket', socket.handle); app.listen(8080, function() { console.log('%s listening at %s', app.name, app.url); });...