Wonderware Intouch 10.0 - Mouse cursor and popup window! How to do?

Missy5

Member
Join Date
Jul 2008
Location
NG
Posts
24
Hi,

I was wondering if it is possible to do an object that when you go cross over with mouse cursor a popup window appears?

Similar if you have one button and when you click on it the popup window opens.


Thanks, M.
 
Under each button or object, you can use the tooltip function to popup a bubble with a custom message. If you need more complicated controls for popup windows and controls, use the variables $ObjHor and $ObjVer in a condition script to detect if the cursor is at a particular location.
 
make an object "under" what you wanna mouseover. I'm pretty sure there is a "on Mouseover" condition type for the Action tab to open a window/popup.


Show "popup";
 
for the heck of it.. I made a mouse over object..

then put a mouseover object with a longer time on the popup to

Hide "popup";

OR

made a tag to hold a value

on mouseover object
popup_var = 1

Then wrote a script condition

popup_var == 1

on true
show "popup";

While true (800ms)
Hide "popup";
popup_var = 0;

This makes the popup come up for a set period.. 800ms evertime you mouseover


:)
 
Last edited:
I have a somewhat similar question about a mouse over script. I would like to just show the tag name of the device that the mouse cursor moves over such as an actuator tag name. I'm not too familiar with scripting so I'm looking for a little help.
 
I have a somewhat similar question about a mouse over script. I would like to just show the tag name of the device that the mouse cursor moves over such as an actuator tag name. I'm not too familiar with scripting so I'm looking for a little help.

The same as what davew mentioned use the tooltip function but you could just use the static text option.
 
I have a somewhat similar question about a mouse over script. I would like to just show the tag name of the device that the mouse cursor moves over such as an actuator tag name. I'm not too familiar with scripting so I'm looking for a little help.

Use Tooltip animation, with an expression using the .Name dotfield of the tag. This will give you the actual tag name in the PLC.
 

Similar Topics

Hi guys, I have experience with PLC to Excel etc...just starting on using intouch scada screens. I have an Excel sheet that uses mainly...
Replies
1
Views
138
Hola chicos. Tengo un problema con el driver de comucicacion dasabcip 5, y un plc controllogix v34, ya realice la comunicacion pero en ciertos...
Replies
2
Views
155
Hi, I am upgrading a Wonderware SCADA form version 9.5 to version 23. I am able to migrate all the graphic, but when to activate the runtime this...
Replies
8
Views
405
Hi all, I am using OI.GATEWAY.2 to communicate to the PLC using an OPC UA. I can see the tags using an OPC explorer connecting to the...
Replies
0
Views
181
For a while, I have been working with InTouch 10.1. The problem I am currently facing is the need to implement certain functions that do not...
Replies
0
Views
478
Back
Top Bottom