1

Any replacement for the AS3 ByteArray where you can read raw binary data via any medium?

Maybe load a TXT file and access the characters byte-by-byte? Any ideas?

Robin Rodricks
  • 110,798
  • 141
  • 398
  • 607

2 Answers2

3

search for base64 - that's how to do it.

Iain
  • 9,432
  • 11
  • 47
  • 64
  • Yeah lain, you won't believe it, that EXACTLY what I'm doing! See here http://stackoverflow.com/questions/19893/how-do-you-embed-binary-data-in-xml I JUST found and commented on the question! – Robin Rodricks Feb 02 '09 at 10:24
-1

"The Socket class enables ActionScript code to make socket connections and to read and write raw binary data. It is similar to XMLSocket but does not dictate the format of the received or transmitted data. "

Robin Rodricks
  • 110,798
  • 141
  • 398
  • 607