How to add a mouse-up action in your own subclass of Morph
Last updated at 2:39 pm UTC on 18 December 2005
Situation: You have created your own subclass of Morph or a subclass of it and want to add a mouse-up action.
- Just return true. (You may want to inspect the incoming event first.) This signals, that your morph has its own implementation of #mouseDown
- Override #mouseDown to do what you want.
Also see Morph mouse up action (Smalltalk expression)