Forum Discussion
Ryan_Moran
11 years agoValued Contributor
var wshell = new ActiveXObject('WScript.Shell');
var allpages = Sys.Browser("chrome").FindAllChildren(["Name"],["Page*"],1).toArray();
for (var page = 0;page < allpages.length;page++) {
wshell.popup(allpages[page].url);
}Not sure if there is an easier way but...wrote this for you.