|
Last-modified: 2003-12-21 (日) 20:28:24 (7642d)
DDEを使って、URLリストの巡回をします。 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); |