Hello,

Or simpler:

1 second wait.

In your example:

Transcript open.
[
    10 timesRepeat:[Transcript crShow:(DateAndTime now).
        1 second wait]
] fork.


2015-01-27 20:21 GMT+01:00 Nicolai Hess <nicolaih...@web.de>:

>
> 2015-01-27 19:46 GMT+01:00 Laura Risani <laura.ris...@gmail.com>:
>
>> Hi all,
>>
>> I need an object/method like this one
>>
>> Waiting>> wait : seconds
>> "i take the flow control during 'seconds' without halting image morphs
>> stepping/handling (as Delay>>wait: does) and then return to the sender "
>>
>
> Hi Laura,
>
> Delay>>wait:
> it just halts the image UI (morphs, display update, etc), if you call it
> from the active UI process.
>
> If you want to use "wait", you need to tell "what" should wait.
> You may create your own Process with #fork.  ["your code here"] fork.
>
> For example.
> Transcript open.
> [
>     10 timesRepeat:[Transcript crShow:(DateAndTime now).
>         (Delay forSeconds:1) wait]
> ] fork.
>
>
>
>
>
>>
>> How can i implement it?
>> Where can i borrow for reuse an existing one from?
>>
>>
>> Best,
>> Laura
>>
>
>

Reply via email to