[REBOL] Re: How to assign an event to a text-list face?
From: agem:crosswinds at: 11-Jun-2001 17:24
>>>>>>>>>>>>>>>>>> Ursprüngliche Nachricht <<<<<<<<<<<<<<<<<<
Am 11.06.01, 16:17:33, schrieb "Aviles, Javier" <[javier--aviles--eds--com]>
zum Thema [REBOL] How to assign an event to a text-list face?:
> Hello Rebolers,
snip
> On the text-list tl_llam facet I want an event that be triggered each
30
> seconds, on this event I want to update the information contained on
> text-list.... What I should do?
REBOL [
Title: "Digital Clock"
Version: 1.2.0
Date: 2-Apr-2001
Author: "Carl Sassenrath"
Purpose: {A simple digital clock.}
]
view layout [
origin 0
banner "00:00:00" rate 00:00:03
effect [gradient 0x1 0.0.150 0.0.50]
feel [engage: func [face act evt] [
face/text: now/time show face]]
]
(desktop/demos, but trick for delays > 1 sec added :)
> thanks for your help guys!!!
> Javier H. Avilés Avila.
-Volker