View Single Post
  #2  
Unread 05-07-2012, 09:31 AM
Garan's Avatar
Garan Garan is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Oct 2010
Posts: 341
The Turbine ContextMenu isn't a Control or ScrollableControl, it's just an Object so it doesn't have any of the functionality (like size and position methods) that would normally allow you to add a scrollbar. You'd have to build your own menu class which is a bit of a pain.

Can you instead group some of your functionality into submenus and build a two tier menu where you use one context menu as your main menu and its MenuItems pop up submenus where needed which would also be a context menus (kind of like how the in-game system menu works)? Then you would have the benefits of auto positioning and visibility control without having to build your own menu class.
Reply With Quote