Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
How to create a menu with all project names
Last updated at 6:12 pm UTC on 24 January 2020
How to get a menu (using CustomMenu) to choose a project name of all existing projects (for example to create a jump-to-project-button)


m:= CustomMenu new.
Project allNames do:
		[:name | 
m add: name action: name].
m startUp
See also Generate an executable list of all projects


You can also use a ProjectHistory morph