How to create a menu with all project names
Last updated at 12:07 pm UTC on 31 July 2008
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