Ask our Experts
Didn't find what you are looking for? Ask our experts!
Launch of Consumer/Home Owner registration process! We are pleased to announce the commencement of the Consumer/Home Owner Registration Process on Community. Consumers/Home Owners may now proceed to register by clicking on Login/Register. The process is straightforward and designed to be completed in just a few steps.
Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).
Search in
Link copied. Please paste this link to share this article on your social media post.
Posted: 2025-03-12 10:22 AM
Hi there,
When using the Pick Action Wizard -> Hyperlink functionality, there is a checkbox for opening up the hyperlink inside ViewX as tab. When linking to a web site (as opposed to another mimic) this results in an HTML tab created inside ViewX.
PickActionWizard Hyperlink Method
I am interested in passing data from a ViewX session to the hyperlinked URL via URL params (e.g "http:localhost:9999/app?param1=value1". Using the Pick Action Wizard->Hyperlink method, you don't have the ability to dynamically create the URL to do this.
Instead, you must use a script utilizing the Mimic.Navigate function to dynamically create the URL like so:
sub OpenHyperlink()
'Example value from ViewX session
systemName = Mimic.SystemName
'Pack into a string argument
arg1 = "param1="+CStr(systemName)
'Create the URL string
url = "http://localhost:9999/app?" + arg1
'Pass string to Mimic.Navigate function
Mimic.Navigate(url)
end sub
The above code works as expected but opens the hyperlink in a standalone Browser instance.
Is there any way to tell the Mimic.Navigate script function to open the browser inside ViewX similar to the Pick Action Wizard functionality?
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2025-03-13 02:58 AM
You can animate the PickParam property - put the whole URL in that.
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2025-03-13 02:58 AM
You can animate the PickParam property - put the whole URL in that.
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2025-03-13 06:32 AM
Not sure why I didn't think of that, thanks Steve!
Link copied. Please paste this link to share this article on your social media post.
You’ve reached the end of your document
Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.