Users have been asking for custom Menus, this is a way to easily do it.
Download a Resource Editor http://www.angusj.com/resourcehacker/
Open bbw64.exe (make backup first)
Double click RCData
go down to TBANDWINDOW and click
highlight some text in right hand window
ctrl+F type Help then press enter
just above object Help: TMenuItem
hit enter to create empty line
copy all the text starting on the line below Code: from the very left.
then paste on empty line in editor
press the green play arrow at the top
If you have not made a backup of bbw64.exe then File > Save As 'bbw64-Track.exe' else just Save (this will create a backup also) and any shortcuts will still work.

This is just an example Menu, you can create a new menu using any other menu items from other menus to give quick access rather than going deep into menus.
The objects just need a unique name
so if you use object EditCopyTrack: TMenuItem from the Edit menu
you just need to add the new menu name in front
object TrackEditCopyTrack: TMenuItem
alt+R will access menu from keyboard "T&rack" the &r.
Code:
    object Track: TMenuItem
      Caption = 'T&rack'
      object TrackEditCopyTrack: TMenuItem
        Tag = 224
        Caption = 'Copy/Move &Tracks...'
      end
      object TrackTrackSettings: TMenuItem
        Caption = 'Track Settings and Actions...\t F7'
        OnClick = EditTrackSettingsClick
      end
      object TMenuItem
        Caption = '-'
      end
      object TrackRT_Assign: TMenuItem
        Caption = 'Realtracks Picker Dialog'
        OnClick = RT_AssignClick
      end
      object TrackRT_Prefs: TMenuItem
        Caption = 'Realtracks Preferences'
        OnClick = RT_PrefsClick
      end
      object TMenuItem
        Caption = '-'
      end
      object TrackRD_Assign: TMenuItem
        Caption = 'RealDrums Picker Dialog'
        OnClick = RD_AssignClick
      end
      object TrackRD_Prefs: TMenuItem
        Caption = 'RealDrums Preferences'
        OnClick = RD_PrefsClick
      end
      object TrackRD_Quick: TMenuItem
        Caption = 'RealDrums QuickList'
        OnClick = RD_QuickClick
      end
      object TMenuItem
        Caption = '-'
      end
    end

Attached Files (Click to download or enlarge) (Only available when you are logged in)
BB22-bbw64-Add-Menu.gif (348.37 KB, 77 downloads)
BB22-bbw64-Add-Menu-Track.gif (48.74 KB, 77 downloads)