views:

187

answers:

1

hi everyone,

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 ,

+1  A: 

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

George Profenza