property isPopupOpen

(r/o) bool isPopupOpen;

Typ

Zugriff

This property returns true if any popups are open for this shell instance.
function onSample()
{
    if (shell.isPopupOpen)
    {
        shell.print("There is a popup open somewhere.");
    }
    else
    {
        shell.print("No popups open.");
    }
}