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

Join our "Ask Me About" community webinar on May 20th at 9 AM CET and 5 PM CET to explore cybersecurity and monitoring for Data Center and edge IT. Learn about market trends, cutting-edge technologies, and best practices from industry experts.
Register and secure your Critical IT infrastructure

Embedded mimics

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
  • Embedded mimics
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
307
AndrewScott
Admiral AndrewScott
95
BevanWeiss
Spock BevanWeiss
89
AdamWoodlandToo
Lt. Commander AdamWoodlandToo
36
View All
Related Products
product field
Schneider Electric
EcoStruxure™ Geo SCADA Expert

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
IvanDeMarco97
Lieutenant JG IvanDeMarco97 Lieutenant JG
Lieutenant JG

Posted: ‎2023-07-05 05:24 AM

0 Likes
5
1242
  • 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: ‎2023-07-05 05:24 AM

Embedded mimics

Hi everyone,
I made a mimic where there are two embedded mimics.
My need is to hide a layer of one of the two embedded mimics when clicking on the other embedded mimic via vb.
I don't think it can be done...
So I was thinking of an alternative way, using the "visible" animation of the embedded mimic with a parameter of the parent mimic by writing it from the other embedded mimic on click via vb but I can't write it, I can only read.
Some advice?

 

Thank you so much!

Labels
  • Labels:
  • Mimics
  • SCADA
  • 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: ‎2023-07-11 03:57 AM

1 Like
0
1094
  • 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: ‎2023-07-11 03:57 AM

1) Create a sub or function in the parent mimic's script editor.

  a) This might use the syntax to control the embedded object visibility  properties like: Mimic.Layers("LayerName").M_1.Visible

or b) This might modify the parameters sent into the embedded mimic (You can add a parameter to the embedded mimic and use it to control it's internal layer visibility - you need to do this because the outer/parent mimic has to 'poke' the value into it, it cannot see item properties directly). 

For example:

sub doit(s)
	'The layer on this mimic
	set MyLayer = Mimic.Layers("New Layer")
	'The name of the embedded mimic as on this mimic
	set MyItem = MyLayer.Item("M_1")
	'The parameter of the embedded mimic you want to change
	MyItem.param1 = s
end sub

You could add the item name as a parameter to the doit subroutine.

 

2) Edit an embedded mimic and choose an object to add a pick action. Choose script and then see the Mode drop-down.

sbeadle_0-1689069958310.png

Select 'Execute code fragment on top-level mimic' and type the name and parameters of the sub or function, e.g. MyFunction( "param1")

 

See Answer In Context

Reply

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

Replies 5
IvanDeMarco97
Lieutenant JG IvanDeMarco97 Lieutenant JG
Lieutenant JG

Posted: ‎2023-07-06 08:17 AM

0 Likes
0
1209
  • 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: ‎2023-07-06 08:17 AM

@Jfini Thanks for the reply
The idea you tell me is the one I was trying but I can't write the parameter from the VB script.
"Dim parentMimic As Mimic" I can't write it, "As Mimic" gives me an error...
"Set parentMimic = Parent" I can't write it, what is "Parent"?
I use this syntax to read the parameters:
dim param
set param = TopMimic.Parameters
msgbox(param.LayerVisibilty)
I can't find the way without getting errors to write the parameter...

Reply

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

geoffpatton
Captain geoffpatton
Captain

Posted: ‎2023-07-07 06:53 AM

0 Likes
0
1187
  • 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: ‎2023-07-07 06:53 AM

I just control the visibility of layers and objects like this.

 

Mimic.Layers("LayerName").Visible = 1 or 0

 

you can also control the visibility of objects on the screen embedded mimics name is listed when you view the properties they defailt to M_# and you can rename them if you want.

Mimic.Layers("LayerName").M_1.Visible =

 

You can also read the status of the visibility of an object.

Dim MyMimicStatus

MyMimicStatus = Mimic.Layers("LayerName").M_1.Visible

  • 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.

sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2023-07-10 12:20 AM

0 Likes
1
1131
  • 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: ‎2023-07-10 12:20 AM

Hi Ivan

i can think of a couple of ways. 
1) use the feature where an embedded mimic action can execute script on the parent mimic, and have the script refer to the other embedded

2) use a Registry function to control a registry variable name which all mimics can see

 

might these help?

Steve

 

Reply

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

IvanDeMarco97
Lieutenant JG IvanDeMarco97 Lieutenant JG
Lieutenant JG

Posted: ‎2023-07-10 01:51 AM

In response to sbeadle
0 Likes
0
1123
  • 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: ‎2023-07-10 01:51 AM

Thanks Steve for reply.

How can I call a parent script from embedded mimic?

 

Thanks!

Ivan

Reply

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

sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2023-07-11 03:57 AM

1 Like
0
1095
  • 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: ‎2023-07-11 03:57 AM

1) Create a sub or function in the parent mimic's script editor.

  a) This might use the syntax to control the embedded object visibility  properties like: Mimic.Layers("LayerName").M_1.Visible

or b) This might modify the parameters sent into the embedded mimic (You can add a parameter to the embedded mimic and use it to control it's internal layer visibility - you need to do this because the outer/parent mimic has to 'poke' the value into it, it cannot see item properties directly). 

For example:

sub doit(s)
	'The layer on this mimic
	set MyLayer = Mimic.Layers("New Layer")
	'The name of the embedded mimic as on this mimic
	set MyItem = MyLayer.Item("M_1")
	'The parameter of the embedded mimic you want to change
	MyItem.param1 = s
end sub

You could add the item name as a parameter to the doit subroutine.

 

2) Edit an embedded mimic and choose an object to add a pick action. Choose script and then see the Mode drop-down.

sbeadle_0-1689069958310.png

Select 'Execute code fragment on top-level mimic' and type the name and parameters of the sub or function, e.g. MyFunction( "param1")

 

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