Question on ComboBox
I can create options for Combo Box with pop up tips using something like that (found this experimentally): Names Default To Here( 1 );
list = {"One" ("This is One"), "Two" ("This is two")};
New Window( "Example",
cb = Combo Box(
list,
selection = cb << GetSelected();
Print( selection );
)
);But then when I look at the selection - it only has "One" or "Two" as a result of << Get Selected.T...