How to create a menu with all project names
Last updated at 10:33 pm UTC on 12 December 2011
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
In Squeak 4.2:
- open the Objects flap
- select the Navigation category
- drag the ProjectHistory object to your desktop
This has the same effect as above.