11-16-2022, 12:43 PM
Quote:if there are multiple identical, press the letter key, it will switch between multiple items, as shown in the figure below, can it be achieved in LA?
Currently no. Need to &-mark different characters. In next program version multiple items can have the same character marked.
// script ""
var m = new popupMenu();
m["&some"] = o => { print.it(o); };
m["s&ure"] = o => { print.it(o); };
m["s&ine"] = o => { print.it(o); };
m["&several"] = o => { print.it(o); }; //currently this cannot be selected with 's', but in next program version it will work
m.Show(PMFlags.Underline);