DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Create A Window With Scrollable Contents
| w s p | w := SystemWindow new. s := ScrollPane new. p := PasteUpMorph new. p extent: 1000@1000. s scroller addMorph: p. w addMorph: s frame: (0@0 corner: 1@1). w openInWorld.





