byte - where is it documented?
Posted: Sat Mar 05, 2011 6:38 pm
I am playing with a binary file and copied the following line from one of the tutorials:
and also
Where in the documentation is the word byte documented and are there other useful commands such as bit?
Simon
Code: Select all
put byte tCount of theBinaryData into theByte --where is byte defined, dictionary search does not find it ?
Code: Select all
repeat for each byte theByte in theBinaryData
-- process theByte here (but don't modify directly)
end repeat
Simon