WSH/Web自動巡回
をテンプレートにして作成
Search in
this wiki
and
or
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
]
開始行:
DDEを使って、URLリストの巡回をします。~
海外のアフリシエイトプログラムとかで「一定時間Activeじ...
#でも儲かった例がない(++
round.js
var WSHShell = WScript.CreateObject("WScript.Shell");
url = new Array("http://techside.net/",
"http://i-mobile.org/",
"http://www.uranews.com/",
"http://www.forest.impress.co.jp/",
"http://www.tvguide.or.jp/saitama/table/",
"http://www.watch.impress.co.jp/akiba/",
"http://jomora.bne.jp/");
i = 0;
do {
WSHShell.Run(url[i]);
i++;
if (i == url.length) i = 0;
WScript.Sleep(25000);
} while(true);
終了行:
DDEを使って、URLリストの巡回をします。~
海外のアフリシエイトプログラムとかで「一定時間Activeじ...
#でも儲かった例がない(++
round.js
var WSHShell = WScript.CreateObject("WScript.Shell");
url = new Array("http://techside.net/",
"http://i-mobile.org/",
"http://www.uranews.com/",
"http://www.forest.impress.co.jp/",
"http://www.tvguide.or.jp/saitama/table/",
"http://www.watch.impress.co.jp/akiba/",
"http://jomora.bne.jp/");
i = 0;
do {
WSHShell.Run(url[i]);
i++;
if (i == url.length) i = 0;
WScript.Sleep(25000);
} while(true);
ページ名: