'From etoys2.3 of 28 November 2007 [latest update: #1887] on 30 January 2008 at 3:44:16 pm'! "Change Set: initialClipboard-yo Date: 30 January 2008 Author: Yoshiki Ohshima set the initial contents of clipboard (that causes a problem when the morph is rendered onto a canvas before showing up on screen)."! !ClipboardMorph methodsFor: 'parts bin' stamp: 'yo 1/30/2008 15:40'! initializeToStandAlone super initializeToStandAlone. "" self initialize. "" self step. "To set the contents". self extent: 200 @ 100. self backgroundColor: (Color r: 0.484 g: 1.0 b: 0.484). self setBalloonText: 'This shows the current contents of the text clipboard'. self newContents: Clipboard clipboardText! !