The time the popup remains visible before hiding itself.
Usage
Set_Property(OLECtrlEntID, "OLE.ShowDelay", Value)
Values
Value can be any positive or negative whole number:
Default: 5000
Remarks
The ShowDelay is the time, in milliseconds, that the popup remains visible until it hides itself. The default is 5000, or 5 seconds. To make the popup remain visible longer, just increase this value. Decrease the value to shorten the visibility time. If you want the popup to stay visible indefinitely, then set this value to 0
Example
// Make the popup remain visible for 10 seconds Set_Property(@Window:".OLE_POPUP", "OLE.ShowDelay", 10000) // Make the popup remain visible forever Set_Property(@Window:".OLE_POPUP", "OLE.ShowDelay", 0)