Squeak SmalltalkJoker Squeak Smalltalk : Morphic : prevnext Drag And Drop Doubleclick

> I have a Morph subclass, which is dragable by default. Now I 
> would also like to make it doubleclickable. But if I start 
> adding the methods #handlesMouseDown, etc, then apparently I 
> loose the dragability. Am I doing something wrong? Or does 
> Morphic not support this combination of behaviors?

Try:

myMorph on: #startDrag send: #onDrag to: myMorph.
myMorph on: #doubleClick send: #onDoubleClick to: myMorph.

Note that #handleMouseDown: ( not #handlesMouseDown )
should be never ever overridden unless 
you know EXACTLY what you are doing. You're starting to infere with 
some deep down notions of Morphic and likely to break more than you 
(think you) fix. 

Cheers,
  - Andreas