[Pharo-users] Snippet for demo - being in control moving the Pharo logo

2014-02-27 Thread btc
As a general rule, people feel more confident about systems they can control. So I was thinking this might be a good snippet for demos to give that sense of control. "Evaluate one line at a time." logo := ActiveWorld submorphs last. logo center: ActiveWorld center. logo top: 0. cheers -ben

Re: [Pharo-users] Snippet for demo - being in control moving the Pharo logo

2014-02-27 Thread Pharo4Stef
On 28 Feb 2014, at 05:03, b...@openinworld.com wrote: > As a general rule, people feel more confident about systems they can control. > So I was thinking this might be a good snippet for demos to give that sense > of control. > > "Evaluate one line at a time." > logo := ActiveWorld submorphs

Re: [Pharo-users] Snippet for demo - being in control moving the Pharo logo

2014-02-28 Thread p...@highoctane.be
Works :-) Works also like this: logo := World submorphs last. logo center: World center. logo top: 0. As in Pharo: ActiveWorld == World --> true Phil On Fri, Feb 28, 2014 at 5:03 AM, wrote: > As a general rule, people feel more confident about systems they can > control. So I was thinkin

Re: [Pharo-users] Snippet for demo - being in control moving the Pharo logo

2014-03-01 Thread btc
Pharo4Stef wrote: On 28 Feb 2014, at 05:03, b...@openinworld.com wrote: As a general rule, people feel more confident about systems they can control. So I was thinking this might be a good snippet for demos to give that sense of control. "Evaluate one line at a time." logo := Ac