Comment #2 on issue 653 by damien.c...(a)gmail.com: [Glamour]
GLMBasicExamples>>staticAndDynamicMenu presents not working actions
http://code.google.com/p/moose-technology/issues/detail?id=653
Ok, I fixed it by changing the action from
dynamicActionsOnSelection: [:text | ... action: [Transcript show: text
selection]; ... ];
to
dynamicActionsOnSelection: [:text | ... action: [Transcript show: text
selectedText]; ... ];
However, I'm not sure about the behavior of #selection which currently
returns what is selected in the list presentation instead of the text
presentation. Please check this before closing the report.