2015-01-27 19:46 GMT+01:00 Laura Risani <laura.risani@gmail.com>:Hi all,I need an object/method like this oneWaiting>> 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