Last-modified: 2003-12-21 (日) 20:28:24 (7425d)

 DDEを使って、URLリストの巡回をします。

 海外のアフリシエイトプログラムとかで「一定時間Activeじゃないとpointをカウントしない」ものとかありますが、こういうの使えば無人だけど常に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);

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS