Re: [Pharo-project] Synchronous Spec

2013-04-30 Thread roberto.mine...@usi.ch
Thanks a lot. Now I'll try what you proposed! On Apr 30, 2013, at 12:33 PM, Benjamin wrote: > It actually acts exactly the same, just StandardWindow is hiding the > complexity under the hood :) Which is actually a good thing :) > > If you want the same: > > | ui | > ui := MyUI new. > > Wo

Re: [Pharo-project] Synchronous Spec

2013-04-30 Thread Benjamin
It actually acts exactly the same, just StandardWindow is hiding the complexity under the hood :) If you want the same: | ui | ui := MyUI new. World (or whatever morph) openModal: ui openWithSpec window. "you will arrive here at MyUI closing" ui value (idk which info you want). Another tip:

[Pharo-project] Synchronous Spec

2013-04-30 Thread roberto.mine...@usi.ch
Hi, As far as I understood, Spec is sort of asynchronous, let me explain. I implemented my ComposableModel (i.e., MyWindow) as a window with a TextModel, a DropList model, and two buttons: ok and cancel. The behavior I want to achieve is something that is easily doable with StandardWindow, som