|
Re: Modifying image sent to Dashboard
File IO uses the same pieces of the API as the socket IO, namely Connector.open("file://[name]"); instead of a different protocol.
If you wish to open a basic socket connection, Connector.open("socket://ip"). There's some related classes (for both file and socket connections) which take the form of TYPEConnection, where type is File, Socket, HTTP, whatever.
|