Hello listers, Any ideas on how to unpack binary data in AS3?
I am porting a python app that makes use of these functions http://docs.python.org/library/struct.html to read a 32-bit little endian value like this: value = struct.unpack("<L", filehandle.read(4))[0] what would be the AS3 equivalent? Thanks, Ivo

