Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Project current name
Last updated at 1:16 pm UTC on 4 October 2019
 Project current name

gives the name of the Project.


The top project, that is the project you use when you first open a Squeak release, is usually named 'Unnamed1'.


To name it execute

 Project current name: 'Top'.


You then may jump to the top project from any project by executing in a Workspace


 (Project named: 'Top') enter


To produce a list with directly executable content of all Morphic Projects execute
 ((MorphicProject allSubInstances collect: [:p | p name]) asSet asSortedCollection) do: [:name | Transcript show: '(Project named: ''', name, ''') enter';cr]



See also