a) the options are based on what you have setup in your views (the values needed as the parameter are the ones highlighted in red)Nice, so for testing purposes, could you provide
a) a list of all (some) possible options
b) a xml file (e.g. BasicHome) that links to a couple of different views
![]()
b) I will try but my skinning powers are useless....
Do you have a basic home I could hack? (for testing I hacked the playlist button on Maya now playing screen which was already a hyperlink button so I just added the parameter)
Is there a nice way by the API to retrieve the list of views a user has defined?
User case is that a Skin Editor can provide this list to make it easier for user to generate a menu of their favourite views.
MusicViewHandler handler = new MusicViewHandler();
foreach(ViewDefinition v in handler.Views)
{
// do something with v.name
}
Nice, so this will be similar for MyVideos etc when that supports jump to view as well![]()