Hi,
I answered a similar question a few years ago on this topic, where I suggested that the tracing could be turned on and off selectively using ActiveX calls:
How can I choose display a step or not when sequnce running
This could be used to selectively turn on and off tracing throughout the sequence to hide sensitive or confusing sections from the operator.
I would also use pre-conditions to check if the Sequence is being executed from the editor or from an operator interface.
As the Engine API can now be accessed through expressions, I'd use a Statement step with the following expressions:
//Pre-Condition
Runstate.IsEditor == False
//Post-Expression - Turn tracing OFF
Runstate.Engine.StationOptions.TracingEnabled = False
//OR
//Post-Expression - Turn tracing ON
Runstate.Engine.StationOptions.TracingEnabled = True
I've attached an example sequence file.
Regards,