Hi,
you have to pass them as script arguments and then access them via $ARGS array. For example, you can create library script named "TestScript" as this:
and configure it in object tool as this:
Best regards,
Victor
you have to pass them as script arguments and then access them via $ARGS array. For example, you can create library script named "TestScript" as this:
Code Select
trace(0, "field1 = " . $ARGS[1]);
trace(0, "field2 = " . $ARGS[2]);
and configure it in object tool as this:
Code Select
TestScript("$(Field1)", "$(Field2)")
Best regards,
Victor