Connecting Flash to Ports using socket programming

187 views Asked by At

I need to send a signal output from flash application to an external hardware device. I know the concept, that a socket server is required in between to connect the both. Flash will communicate to the port using socket server and the external device will receive that signal from the port. But I am not comfortable with socket programming to communicate between flash and the ports.

1

There are 1 answers

3
George Profenza On

A few years ago I got serial communication in as3 using the Socket class and serproxy. For some reason, back then the serproxy shipping with as3glue worked for me.

You can see my resources from those experiments here

I haven't used as3 with serial recently so my approach might be outdated. Perhaps this as3-arduino-connector project might be more relevant.