An alternative syntax for the machine handle operator is the bracket form, like the following example shows.
[hMachine] Any4TestFunctionCall ()
[sMachineA] SYS_SetDir (sDir)The correct form of the invalid syntax shown above is:
// Invalid machine handle operator use
if ([sMachine]ProjX.DuplicateAlert.Exists())
Print ("Duplicate warning on {sMachine} recipient.")
To execute the
SYS_SetDir function on the host machine, you can do the following:
[hHost] SYS_SetDir (sDir)