How to connect and send data to Bluetooth form AS3?
I need to connect and send data to Bluetooth from Action Script 3 (AS3)
if there is any idea I'll开发者_如何学运维 be glad for your help
Thanks in advance ,
Nice question!
Wiimotes connect/send data through bluetooth.
I had a quick look through the WiiFlashServer java source. It uses a ServerSocket and it seems to send binary data to flash via the Socket class.
You could either adapt some of that code to suit your needs, or build a Socket server in your language of choice and send the data to flash sockets.
HTH, George
精彩评论