Tutorial: application.getChildWindows

application.getChildWindows

Retrieves an array of wrapped fin.desktop.Windows for each of the application’s child windows.

Example

var application = fin.desktop.Application.getCurrent();

application.getChildWindows(function (children) {
    children.forEach(function (childWindow) {
        console.log("Showing child: " + childWindow.name);
        childWindow.show();
    });
});