> On 8 Feb 2018, at 08:16, Stephan Eggermont <step...@stack.nl> wrote:
> 
> Juraj Kubelka <juraj.kube...@icloud.com>
> wrote:
>> I am not sure if we understand each other. 
>> The example: 
>> 
>> morph := 'Hello' asMorph.
>> morph on: #mouseUp send: #traceCr: to: morph.
>> morph openInWindow
>> 
>> does not work for me. Actually I have not found a code that triggers
>> #mouseUp event neither.
> 
> Well, it works for me on 60528 on Windows. Did you open the transcript
> window before running the example?
> 
> Stephan

Works fine for me in Pharo 7.

You do click, do you ?

Her is a variation:

morph := 'Click me' asMorph.
morph on: #mouseUp send: #value to: [ self inform: 'You clicked me!' ].
morph openInWindow.


Reply via email to