'From Squeak3.7beta of ''1 April 2004'' [latest update: #5923] on 24 May 2004 at 3:56:53 pm'! !Morph methodsFor: 'WiW support' stamp: 'gk 5/24/2004 15:43'! eToyRejectDropMorph: morphToDrop event: evt | tm am | tm _ TextMorph new beAllFont: ((TextStyle named: Preferences standardEToysFont familyName) fontOfSize: 24); contents: 'GOT IT!!'. (am _ AlignmentMorph new) color: Color yellow; layoutInset: 10; useRoundedCorners; vResizing: #shrinkWrap; hResizing: #shrinkWrap; addMorph: tm; fullBounds; position: (self bounds center - (am extent // 2)); openInWorld: self world. SoundService default playSoundNamed: 'yum' ifAbsentReadFrom: 'yum.aif'. morphToDrop rejectDropMorphEvent: evt. "send it back where it came from" am delete ! !