Make a connector Swarming compatible

This driver appears to be interfacing directly with SLDataMiner to create an alarm event. Most likely this will be called as protocol.NotifyDataMiner or as SetDataMinerInfoMessage over SLNet Before: Type: (int) …

Automation Script to open a URL on browser

Yes after clicking the checkbox it does work and this pop up doesn’t appear. But it also open’s the automation script execution popup screen behind it. I don’t want the …

Automation Script to open a URL on browser

Does this work for you? using System; using System.Collections.Generic; using System.Globalization; using System.Text; using Skyline.DataMiner.Automation; /// <summary> /// DataMiner Script Class. /// </summary> class Script { /// <summary> /// The …

Change variable which influence the same shape

Hi David, A possible option is to use an automation script to update a session variable: See below code snippet: ScriptParam spValueLocked = engine.GetScriptParam(“ValueLocked”); engine.AddOrUpdateScriptOutput(UIVariables.VisualOverview.CreateKey(“Locked”), spValueLocked.Value); Script Definition: Shape definition: …