'From Squeak3.7gamma of ''17 July 2004'' [latest update: #5985] on 24 August 2004 at 2:52:14 am'! "Change Set: TwoWayScrollComment-dew Date: 24 August 2004 Author: Doug Way Questions/problems have come up a few times recently about TwoWayScrollPane, which is now obsolete. This is simply a class comment change which makes it clear that it is obsolete."! !TwoWayScrollPane commentStamp: '' prior: 0! TwoWayScrollPane is now obsolete. You should be able to use ScrollPane to do both vertical and horizontal scrolling. As an example, see Morph>>inATwoWayScrollPane and change the first line to create a ScrollPane instead of a TwoWayScrollPane. It will still work. (EllipseMorph new extent: 200@150) inATwoWayScrollPane openInWorld Note that user preferences for ScrollPane may be geared toward text scrolling, so that the horizontal scrollbar may be hidden when not needed, while the vertical scrollbar is always shown. Use ScrollPane>>alwaysShowHScrollbar: or its variants to adjust this if you want the vertical & horizontal scrollbars to be shown consistently. !