Tutorial: window.isShowing

window.isShowing

Determines if the window is currently showing. For current state of the window, use getState().

Example

var finWindow = fin.desktop.Window.getCurrent();

finWindow.isShowing(function (showing) {
    console.log("the window is " + (showing ? "showing" : "hidden"));
});