Determines if the window is currently showing.
Example
var finWindow = fin.desktop.Window.getCurrent();
finWindow.isShowing(function (showing) {
console.log("the window is " + (showing ? "showing" : "hidden"));
});
Determines if the window is currently showing.
var finWindow = fin.desktop.Window.getCurrent();
finWindow.isShowing(function (showing) {
console.log("the window is " + (showing ? "showing" : "hidden"));
});