09/12/13 12:38:24 pxPGHUJD
>>949
/*
スクリプト初期化データ
guid={5EF5DF86-6885-452B-B5E8-2DBBC7C602B0}
caption=完了アイコン初期化
version=0
hint=
event=OnDoneLastDownload
match=
author=
synchronize=0
*/
function OnDoneLastDownload(irvine,folder){
/*
フォルダの最後のダウンロード終了イベント
※ダイアログを呼びださないでください
*/
for(var i=0;i<folder.ItemCount;i++){
var item = new ActiveXObject('Irvine.Item');
item.data = folder.ItemData[i];
item.Success = false;
folder.ItemData[i] = item.data;
}
}