Limit Visible PopupMenu Entries?

Is it possible to limit the number of entries which appear in a Popup Menu?
I have around 30 entries, but would like to limit it to around 10, and then be able to scroll to see the other entries.

I have looked in the LR properties, but cannot seem to find anything relevant?
Any help would be appreciated.

Thank you all in advance.

Without guarantee: Looks to me like you would have to create a custom subclass, probably based on a scrollview. NSPopupButton carries properties like numberOfItems as read-only – it always displays all attached items at once.

Too advanced for me :frowning:
Thanks anyway - I guess I will stick with what I have.

How can I limit the “pop-up” size of NSPopUpButton?

Alternatively you could group the 30 items in 2 or 3 submenus.

[quote=190560:@Richard Summers]Is it possible to limit the number of entries which appear in a Popup Menu?
I have around 30 entries, but would like to limit it to around 10, and then be able to scroll to see the other entries.

I have looked in the LR properties, but cannot seem to find anything relevant?
Any help would be appreciated.

Thank you all in advance.[/quote]

Your best bet is to use a button and a ListBox.

Thanks Guys.