Just a quick question, as I've failed to find much online to help point me in the right direction...
My goal is to:
- load a Binary Data object with specific values from an external binary file
- see them displayed as HEX using a text object tp verify they're correct
- write them to a new external binary file
What is the best approach to accomplishing this? I've noticed that simply including the source bin as a project file, requesting it through AJAX, saving it to the Binary Data buffer (UTF-8 Text seems to be the only option?), loading it into a text object (I've made my own decimal to hex conversion function) appears to function as expected, however, when I then try to write the binary data to a new file externally using AJAX, my file nearly doubles in size...
What am I missing here?
Thanks in advance!
(Ideally I'd like to be able to write the bytes directly into the Binary Data object using either %00000000 Binary or #FF Hex... I don't suppose this is coming down the pipe any time soon is it?)