WSH/IEを操作
をテンプレートにして作成
Search in
this wiki
and
or
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
]
開始行:
WSHならIEを操作することも出来ます。
ienavi.js
//--- Internet Explorerオブジェクトの取得
var IE = WScript.CreateObject("InternetExplorer.Applicat...
//IE.Width = 640;
//IE.Height = 480;
IE.Visible = true;
//
//--- 指定したURLのホームページを表示する
do {
IE.Navigate("http://www.goo.ne.jp/");
WaitForLoad();
WScript.Sleep(25000);
} while (true);
function WaitForLoad(msec) {
var wait = (new Date()).getTime() + msec;
while ((new Date()).getTime() <= wait);
while (IE.busy);
while (IE.Document.readyState != "complete");
}
** デスクトップのIEをショートカット化して閉じるスクリプト
私は、IEを何十枚も開きっぱなしにしておくことがあります...
&ref(ShortCutter.js);
参考URL
- http://member.nifty.ne.jp/aya/wsh/wsh23.htm
- http://www.roy.hi-ho.ne.jp/mutaguchi/wsh/object/ie.htm
終了行:
WSHならIEを操作することも出来ます。
ienavi.js
//--- Internet Explorerオブジェクトの取得
var IE = WScript.CreateObject("InternetExplorer.Applicat...
//IE.Width = 640;
//IE.Height = 480;
IE.Visible = true;
//
//--- 指定したURLのホームページを表示する
do {
IE.Navigate("http://www.goo.ne.jp/");
WaitForLoad();
WScript.Sleep(25000);
} while (true);
function WaitForLoad(msec) {
var wait = (new Date()).getTime() + msec;
while ((new Date()).getTime() <= wait);
while (IE.busy);
while (IE.Document.readyState != "complete");
}
** デスクトップのIEをショートカット化して閉じるスクリプト
私は、IEを何十枚も開きっぱなしにしておくことがあります...
&ref(ShortCutter.js);
参考URL
- http://member.nifty.ne.jp/aya/wsh/wsh23.htm
- http://www.roy.hi-ho.ne.jp/mutaguchi/wsh/object/ie.htm
ページ名: