Does anyone have any ideas on how to make a combo box narrower instead of wider? Even if I change the items in my list to single characters only, the combo box width seems to have a mind of its own:
Names Default To Here(1);
New Window("Example",
cb = Combo Box({"i"})
);
cb << Get Width;
With the example above, the width is 107. This is way too large for a single letter, in my opinion. But if I add a "j" to the list, so the list is {"i", "j"}, the width actually gets narrower, and goes to 71. Anyone know why?
PS: I'm using JMP Pro 17.1.0 and MacOS Ventura 13.4.1.
PPS: replying to @txnelson : Question about the scripting index... The "<< Get Width" command isn't listed under "Item Messages" for Combo Box, but it is listed under "Shared Item Messages". I've often been confused by this, bc it seems to suggest the user should be able to apply << Get Width to a combo box. But as discussed here, that doesn't seem to be the case. If the commands in this "Shared Item Messages" section aren't necessarily able to be used on the display box, what is the meaning behind that section (asking sincerely...I am genuinely curious). Thanks!