It's non very clear for me. "self widget ifNotNil: [ :w | w openFullScreen ]" but openFullscreen hasn't been implemented yet. It is completely red. Paolo From: benjamin.vanryseghem.ph...@gmail.com Date: Thu, 5 Dec 2013 11:04:29 +0100 To: pharo-users@lists.pharo.org Subject: Re: [Pharo-users] openFullscreen a WindowModel
then (note it’s a hack) WindowModel>>#openFullscreen self widget ifNotNil: [ :w | w openFullScreen ] Ben On 05 Dec 2013, at 10:59, Picci Pharo <prova...@hotmail.it> wrote:The Class MorphicWindowAdapter doesn't exist in Pharo 2.0 From: benjamin.vanryseghem.ph...@gmail.com Date: Wed, 4 Dec 2013 11:26:54 +0100 To: pharo-users@lists.pharo.org Subject: Re: [Pharo-users] openFullscreen a WindowModel Add: WindowModel>>#openFullscreen self changed: #openFullscreen with: #() MorphicWindowAdapter>>#openFullscreen self widgetDo: [ :w | w openFullscreen ] And tadaBen On 04 Dec 2013, at 11:13, Picci Pharo <prova...@hotmail.it> wrote:Hi Guys! One simple question: how can i open fullscreen a WindowModel? As you know, the StandardWindow has got the message "openFullscreen", but it obviously doesn't work for the WindowModel.Any suggestion? Ciao!Paolo