It's a pain to compile the IPA file using Adobe AIR SDK (the compile time is too long). We have Interpreter Mode since AIR 2.7, but performance is not good when running the App under this mode. So I made this program to turn mobile device into input device for MultiTouch project development.
WARNING: Lagging a little using network to transmit touch data :(
TODO: support AccelerometerEvents?
- AIR 3.8 SDK required.
- we need this ANE to implement NetworksInfo API on iOS.
Note: Client must connect to the right IP address and port which Server is binding.
Example:
- LAN setting
//modify server code var server:Server = new Server("0.0.0.0", 8686);
//modify client code var client:Client = new Client("here is your server ip on LAN", 8686);
-
LocalMachine setting (while your are running server-side app on the same machine)
//modify server code var server:Server = new Server("127.0.0.1", 8686);
//modify client code var client:Client = new Client("127.0.0.1", 8686);
Copyright © 2013 civet, dreamana.com.
This program is released under MIT License.