The Inbox: Morphic-ct.1557.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Morphic-ct.1557.mcz

commits-2
A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-ct.1557.mcz

==================== Summary ====================

Name: Morphic-ct.1557
Author: ct
Time: 1 October 2019, 6:25:19.707339 pm
UUID: 2c65699d-e477-f445-a4ab-00f2e1c854bf
Ancestors: Morphic-ul.1552

Adds simple SketchMorph example. Depends on Graphics-ct.422.

This commit is part of reconstruction of Objectland (also known as "The Worlds of Squeak"). For more information, see: http://forum.world.st/The-Inbox-MorphicExtras-ct-267-mcz-td5104764.html

=============== Diff against Morphic-ul.1552 ===============

Item was added:
+ ----- Method: SketchMorph class>>exampleMouseUpAction (in category 'examples') -----
+ exampleMouseUpAction
+ "SketchMorph exampleMouseUpAction openInWorld"
+
+ ^ (self withForm: Form squeakIcon)
+ addMouseUpActionWith: 'self inform: ''Carpe Squeak!!''';
+ yourself!