Hyperlink to Another Display
You can use a script to set a pick action to hyperlink to another display.
The script for a hyperlink is Mimic.Navigate, for example:
Public Function TargetMimic
Mimic.Navigate "SCX:///LOCAL/CMimic/MainGroup.Pipeline"
End Function
This example script provides a link to a Mimic named 'Pipeline'. The 'Pipeline' Mimic is located in a Group named 'MainGroup'. The format of the Mimic's address has to be:
SCX:///LOCAL/<Database Class>/<path>
An easy way to find the address for a ClearSCADA display is to access the display, then add it to your favorites. If you display the Favorites Bar, you can right-click on the display link and select the Properties option to display the Properties window. You can then copy the address from the Properties window and paste it into your script.
If there are double-quotes in the address or URL, you need to enter additional double-quotes around them in the script. For example, if the address is for an Alarms List with filtering, the address could be:
Mimic.Navigate "SCX:///LOCAL/AlarmList/Area = "Filter1"
In the script, this would need to be defined as:
Mimic.Navigate "SCX:///LOCAL/AlarmList/Area = ""Filter1"""