'From etoys2.2 of 24 September 2007 [latest update: #1702] on 14 October 2007 at 6:28:31 pm'! "Change Set: playfieldOptionsCat-sw Date: 14 October 2007 Author: Scott Wallace Disenfranchise the playfield-options item in pasteUpMorph's viewer."! !PasteUpMorph class methodsFor: '*green' stamp: 'sw 10/14/2007 18:11'! putativeAdditionsToViewerCategoryPlayfieldOptions "Answer playfield options additions. Some of these are not yet underpinned by code in the current image; these will follow in due course." ^ #(#'playfield options' ( (command roundUpStrays 'Bring back all objects whose current coordinates keep them from being visible, so that at least a portion of each of my interior objects can be seen.') (command makeFitContents 'Adjust my bounds so that I fit precisely around all the objects within me') (command showAllPlayers 'Make visible the viewers for all players which have user-written scripts in this playfield.') (command hideAllPlayers 'Make invisible the viewers for all players in this playfield. This will save space before you publish this project') (command shuffleSubmorphs 'Rearranges my contents in random order') (command restoreDisplay 'Redraws the screen') (command showAllObjectNames 'show names beneath all the objects currently in my interior, except for those for which showing such names is inappropriate.') (command hideAllObjectNames 'stop showing names beneath all the objects of my interior, If any of them is marked to "always show name", remove that designation')))! ! PasteUpMorph class removeSelector: #additionsToViewerCategoryPlayfieldOptions! "Postscript:" Vocabulary initialize.!