Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

change URL tab names?

Status
Not open for further replies.

MoshiachNow

IS-IT--Management
Feb 6, 2002
1,851
0
0
IL
HI,
Have the following JVS:

var navOpenInNewWindow = 0x1;
var navOpenInNewTab = 0x800;
var navOpenInBackgroundTab = 0x1000;

var intLoop = 0;
var intArrUBound = 0;
var navFlags = navOpenInBackgroundTab;
var arrstrUrl = new Array(3);
var objIE;

intArrUBound = arrstrUrl.length;

arrstrUrl[0] = " arrstrUrl[1] = " arrstrUrl[2] = " arrstrUrl[3] = "
objIE = new ActiveXObject("InternetExplorer.Application");
objIE.Navigate2(arrstrUrl[0]);

for (intLoop=1;intLoop<=intArrUBound;intLoop++) {

objIE.Navigate2(arrstrUrl[intLoop], navFlags);

}

objIE.Visible = true;
objIE = null;
==================================================
I need the tabs to open with names PPS01,PPS02 rather then 192.168.40.101,192.168.40.102,etc
Since I'm a newbe with JVS - will appreciate advise.
thanks

Long live king Moshiach !
 
By the way;

Just 'js' in (lower case) is the general convention for javascript.

Chris.

Indifference will be the downfall of mankind, but who cares?
Time flies like an arrow, however, fruit flies like a banana.
Webmaster Forum
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top