[ALLY] Trouble with timers???
From: tbrownell::yahoo at: 24-Apr-2001 16:05
I see no reason why this script shouldn't work.. but alas, it don't. REBOL [Title: "Timer"] d: 0 blk: [] view layout [ y: text "00:00:00" across button "Start" [a: now/time] button "Stop/Pause" [b: now/time c: b - a append blk c] button "Finish" [foreach val blk [d: d + val] y/text: d show y] button "Clear" [blk: [] d: 0 y/text: "00:00:00" show y ] ]