|
|
Using binary values in scriptingBinary attributes are returned as byte arrays within the scripting code you create. Here is a JavaScript Example: var x = conn.getObject("objectGUID");
for ( i = 0; i < x.length; i++ ) {
task.logmsg ("GUID[" + i + "]: " + x[i]);
}
This would write some numbers varying between -128 and 127 into the logfile. You might want to do something else with your data.
|
|
|