>>618
どういう風にやってるのか知らないけど
Timer を使ってウェイトを実現するならこんな感じでいけるよ?

function nantoka(){
; System.inform("Nantoka....");
; var timer = new Timer(this, "hogehoge");
; timer.interval = 1000;
; timer.enabled = true;
; return;
; }

function hogehoge(){
; System.inform("Hogehoge....");
; }

こったことをするのでなければ、Timer.onTimer を直接いじって
何かするという必要は無いって思う。