Calling a popup with a tag value?

How do I make a Vision popup window "popup" when a boolean tag equals "1" ?
When manual mode is selected, popup a window.

Create a custom property like "pathstr" on the window. On your event that opens the window, pass the tag path to the tag you want to display. Usually, you pass the tagpath up to the root of a UDT, then use indirects for various parts of that UDT. So that in the popup, a binding would be {1}/startpb, where {1} = tagpath you passed to window.

For Vision

1 Like

Please edit your question title and add the vision or perspective tag from the dropdown on the right. The answers will be different.

I think you would do this with a property change script on a docked view.

Use a docked view because it will always be open on every client. Bind a custom property on the docked view to the tag and use a property change script on the docked window to check for your property value == 1 to open the window you want to open.

Holy 1st post subject change, batman. Not at all what was originally asked, so ignore my answer #2.

1 Like

Sounds like this question here:
Open Window in script tag changed