- Playlist (submenu)
- Playback Queue (submenu)
- View as (submenu)
- Detect file durations
- File information...
- Create Thumbnail Image(s)...
- Playlist settings...
I managed to make most of it, writing an user menu in my Logo.txt:
- Code: Select all
<Menu>
<UserMenu Name='PlaylistSettingsMenu' >
<SubMenu Name='$PLAYLIST' >
<MenuItem CmdID='ID_PLAYLIST_OPEN' />
<MenuItem CmdID='ID_PLAYLIST_SAVE' />
<MenuItem CmdID='ID_PLAYLIST_PERSIST' />
</SubMenu>
<SubMenu Name='$PLAYBACK_QUEUE' >
<MenuItem CmdID='ID_PLAYLIST_QUEUE_ADD' />
<MenuItem CmdID='ID_PLAYLIST_QUEUE_RESET' />
</SubMenu>
<SubMenu Name='$VIEW_AS' >
<MenuItem CmdID='ID_PLAYLIST_VIEW0' />
<MenuItem CmdID='ID_PLAYLIST_VIEW1' />
<MenuItem CmdID='ID_PLAYLIST_VIEW2' />
<MenuItem CmdID='ID_PLAYLIST_VIEW3' />
<MenuItem CmdID='ID_PLAYLIST_VIEW4' />
<MenuItem CmdID='ID_PLAYLIST_VIEW5' />
<MenuItem CmdID='ID_PLAYLIST_VIEW6' />
<MenuItem />
<MenuItem CmdID='ID_PLAYLIST_THUMB_REFRESH' />
</SubMenu>
<MenuItem />
<MenuItem />
<MenuItem CmdID='ID_PLAYBACK_PLAYLIST_SET' />
</UserMenu>
</Menu>
- the commands for the playlist default popup menus (CMD_PLAYLIST_MENU_PL and CMD_PLAYLIST_MENU_QUEUE) don't appear in my user menu (even though their popup menus appear for a single button CmdID) - which is why I had to make those popups manually, like above
- the commands for 16:9 thumbnail (from the View as submenu), Detect file durations (ID_PLAYLIST_DETECT I think), File information... and Create Thumbnail Image(s)... are either hard to find or, in the case of ID_PLAYLIST_DETECT, they also don't appear in my user menu
- I don't know how to make the hotkeys appear to the right of the command strings (interestingly, for the main window user menu commands like ID_VIDEO_INC_HUE, the hotkeys appear - just not for the playlist user menu commands... maybe you can correct this, if possible?)
How to solve these problems? Any ideas?