Snippet for demo - being in control moving the Pharo logo
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
On 28 Feb 2014, at 05:03, btc@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 last. logo center: ActiveWorld center. logo top: 0.
why do we need top:0?
cheers -ben
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, <btc@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 last. logo center: ActiveWorld center. logo top: 0.
cheers -ben
participants (3)
-
btc@openinworld.com -
Pharo4Stef -
phil@highoctane.be