|
|
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");
task.logmsg ("GUID: " + x);
for ( i = 0; i < x.length; i++ ) {
task.logmsg ("GUID: " + x[i]);
}
|
|
|