Let's say I have a new Morph:
m := Morph new.
m openInWorld.
How do I close / delete the Morph off?
m removeFromWorld.
Let's say I have a new Morph:
m := Morph new.
m openInWorld.
How do I close / delete the Morph off?
m removeFromWorld.
To remove a morph from the world, use the
delete
method.delete
removes the morph from its parent morph (which is the world afteropenInWorld
).