アラートのクリア

アラート設定の一括クリアを行いたい場合は次の スクリプトを実行すると全てのアラートをクリアできます。

require('FusenUtils')
all = AllFusen()
while all:MoveNext() do
  f = all.Current
  f:SetAlertDateTime('2015/01/01 00:00:00') -- この日時にするとクリア状態になる
  f:SaveFusenFile()
end
 
comments powered by Disqus