Binary registry data is accessed using a table.
To write a set of binary data to the registry, break it into BYTES (8-bit values) in a table and set the n index to the number of valid bytes. Like this:
Code:
array[1] = 20
array[2] = 16
array[3] = 78
array[4] = 196
array["n"] = 4
Then use the standard write routine on a created registry object. Like this:
Code:
RegObj.Write("MyVariable", array)
To read a set of binary registry data, use the standard read routine on an opened registry object. Like this:
Code:
array, error = RegObj.Read("MyVariable")
If error is 0, array is a table with the data in it and array["n"] is the number of valid entries (one byte each).