Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

We Value Your Feedback!
Could you please spare a few minutes to share your thoughts on Cloud Connected vs On-Premise Services. Your feedback can help us shape the future of services.
Learn more about the survey or Click here to Launch the survey
Schneider Electric Services Innovation Team!

Mutli tab menu in GeoSCADA inset

EcoStruxure Geo SCADA Expert Forum

Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • Remote Operations
  • EcoStruxure Geo SCADA Expert Forum
  • Mutli tab menu in GeoSCADA inset
Options
  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
sbeadle
Kirk sbeadle Kirk
308
AndrewScott
Admiral AndrewScott
96
BevanWeiss
Spock BevanWeiss
91
AdamWoodlandToo
Lt. Commander AdamWoodlandToo
37
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to EcoStruxure Geo SCADA Expert Forum
Solved
Mehdi_Sajjadi
Lieutenant JG Mehdi_Sajjadi
Lieutenant JG

Posted: ‎2024-04-30 09:57 PM

0 Likes
5
842
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-04-30 09:57 PM

Mutli tab menu in GeoSCADA inset

Hi 

 

I am trying to create a Multi-tab menu in mimic or inset of GeoSCADA, so operator can move between tabs by clicking them. 

I have tried anything that I know about layers but it seems it is not solution or I am not doing in right way. 

 

Can anyone help me about this issue how to do that?

 

thanks

Labels
  • Labels:
  • Mimics
  • SCADA
  • Scripting
  • Tags:
  • english
  • scada
  • SCADA app
  • SCADA software
  • SCADA tutorial
  • Telemetry and SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2024-05-07 03:36 AM

1 Like
0
793
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-05-07 03:36 AM

Nobody else commented? Oh well, I'll try! Here's one way (uses the user registry, works if you don't have the same mimic open more than once on the same client):

1) Put each tab into a separate Layer on the mimic

2) In the Layer setup dialog, edit the Visibility Expression using a registry key:

sbeadle_0-1715076749068.png

Ensure the actual tabs are on a different layer which is always visible - because they need to be clicked.

Do this for each layer/tab and use a different number for each layer (3 is used here).

On each tab, add a Pick Item. Choose the Registry type of pick action.

Enter the registry item name and value corresponding to that tab.

sbeadle_1-1715076924095.png

You probably want to animate the tab in some way to show it is selected.

You can use, for example, the Font Style property to show bold text when selected:

iif(REGISTRY('Area Control',1) = 3,1,0)

By using the registry, items keep the same visibility when mimics are closed and reopened.

See the F1 help - search for "Using Registry Settings to Control the Visibility of Layers on a Mimic".

 

There are other ways, for example using script.

You can put script into functions, or directly into Pick Actions.

Your script would make direct change to layer or item properties such as Visibility:

Navigate in the help to: " Core Reference > Coding > Scripting > Mimic.Layers"

 

See Answer In Context

Reply

Link copied. Please paste this link to share this article on your social media post.

sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2024-06-07 12:26 AM

1 Like
0
690
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-06-07 12:26 AM

IIF(REGISTRY('Area Control',1) = 3,1,0)

The REGISTRY('Area Control',1) function will read the saved value of this registry variable. If no value was stored it will default to 1.

The IIF(v = 3,1,0) will return 1 if the (registry) value is 3, or 0 if otherwise.

See Answer In Context

Reply

Link copied. Please paste this link to share this article on your social media post.

Replies 5
sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2024-05-07 03:36 AM

1 Like
0
794
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-05-07 03:36 AM

Nobody else commented? Oh well, I'll try! Here's one way (uses the user registry, works if you don't have the same mimic open more than once on the same client):

1) Put each tab into a separate Layer on the mimic

2) In the Layer setup dialog, edit the Visibility Expression using a registry key:

sbeadle_0-1715076749068.png

Ensure the actual tabs are on a different layer which is always visible - because they need to be clicked.

Do this for each layer/tab and use a different number for each layer (3 is used here).

On each tab, add a Pick Item. Choose the Registry type of pick action.

Enter the registry item name and value corresponding to that tab.

sbeadle_1-1715076924095.png

You probably want to animate the tab in some way to show it is selected.

You can use, for example, the Font Style property to show bold text when selected:

iif(REGISTRY('Area Control',1) = 3,1,0)

By using the registry, items keep the same visibility when mimics are closed and reopened.

See the F1 help - search for "Using Registry Settings to Control the Visibility of Layers on a Mimic".

 

There are other ways, for example using script.

You can put script into functions, or directly into Pick Actions.

Your script would make direct change to layer or item properties such as Visibility:

Navigate in the help to: " Core Reference > Coding > Scripting > Mimic.Layers"

 

Reply

Link copied. Please paste this link to share this article on your social media post.

Mehdi_Sajjadi
Lieutenant JG Mehdi_Sajjadi
Lieutenant JG

Posted: ‎2024-05-22 08:26 PM

0 Likes
0
741
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-05-22 08:26 PM

Thanks Steven

 

This tab arrangement is used many times in my projects and I have never made it before. That was great help.

 

Regards

Reply

Link copied. Please paste this link to share this article on your social media post.

Mehdi_Sajjadi
Lieutenant JG Mehdi_Sajjadi
Lieutenant JG

Posted: ‎2024-06-05 08:33 PM

0 Likes
0
708
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-06-05 08:33 PM

Hi Steven

 

I am trying to create these multi-tab layers. regarding REGISTRY, I am quite novice in this concept. I have read SE help a few times, but I did not got its incept very well.

for example in this command "IIF(REGISTRY('Area Control',1) = 3,1,0)", what is happening ? specially REGISTRY part of that.

I am trying to find a simple ,easy to understanding explanation of this command.

 

Thanks again for your support.

 

Reply

Link copied. Please paste this link to share this article on your social media post.

sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2024-06-07 12:26 AM

1 Like
0
691
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-06-07 12:26 AM

IIF(REGISTRY('Area Control',1) = 3,1,0)

The REGISTRY('Area Control',1) function will read the saved value of this registry variable. If no value was stored it will default to 1.

The IIF(v = 3,1,0) will return 1 if the (registry) value is 3, or 0 if otherwise.

Reply

Link copied. Please paste this link to share this article on your social media post.

Mehdi_Sajjadi
Lieutenant JG Mehdi_Sajjadi
Lieutenant JG

Posted: ‎2024-06-10 05:00 PM

0 Likes
0
655
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-06-10 05:00 PM

Hi Steven

 

I appreciate your support, It is working perfectly. 

 

Thanks

Reply

Link copied. Please paste this link to share this article on your social media post.

Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

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.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of