Feb. 8, 2018
7:48 a.m.
On 8 Feb 2018, at 08:16, Stephan Eggermont <stephan@stack.nl> wrote:
Juraj Kubelka <juraj.kubelka@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.