INTERACT FORUM
More => Old Versions => Media Center 17 => Topic started by: smith7181 on May 30, 2012, 12:33:46 pm
-
Hello,
I have issue with the way a track plays when double clicked from the "name" panel. I have attached 2 images describing how it currently operates and how I would like it to operate. Thanks for your help.
-
Remove the name column and double-click the track in the album list below. This will cause it to play the full playlist, starting at the clicked track.
-
Thanks for your reply. I was aware of that method, but what I'm a looking for is a 4 column pane view with no horizontal window. So 4 panes: genre, artist, album, tracks. I want this arrangement because my artists, album, and track lists tend to be quite long and 4 columns is, i find, a much better use of screen real estate than columns + plus 1 row. I have attached a screenshot of this method in Itunes.
Thanks.
-
I don't think there's any way to do what exactly what you're describing.
But you can put the panes on the left by customizing the view. It stacks the panes, but this might still work well for you.
-
Ok, I can live without it then as I prefer JRiver to Itunes in every other way. I do appreciate your replies though. I tried the panes on the left, but that leaves too little vertical space for the artists and album columns.
However, I would like to suggest this view for a future release if it's not a great deal of work. I think it's the best use of space for users that have lots of albums per artist, tracks per albums, & little interest in album art. Plus it flows nicely from left to right. Thanks.
-
See if a nested pane is workable for you, with Panes on the left. Use a single expression column with the value:
[Genre]\[Album Artist (auto)]\[Album]&datatype=[list]
-
See if a nested pane is workable for you, with Panes on the left. Use a single expression column with the value:
[Genre]\[Album Artist (auto)]\[Album]&datatype=[list]
Oh that's very nice! I love how when you select a new artist the previous one collapses.
-
I know it isn't exactly what you are looking for but you could just double click the album and then advance forward to the track you want.
-
Really happy with the nested pane. Is their a tutorial for forming these and a list of all possible values?
Thanks again.
-
There are references that might be helpful:
MC Expression Language (http://wiki.jriver.com/index.php/Media_Center_expression_language)
File Properties (Tags) (http://wiki.jriver.com/index.php/File_Properties_%28tags%29)
Customizing MC 17 Views (http://yabb.jriver.com/interact/index.php?topic=68960.0)
There's a lot of info there, probably too much to cull the answer to this particular question, but the references are there.
-
Thanks so much. Was just reading the "Media Center expression language" page. This is going to be great. Ultimately I'll probably just add [grouping] before [album] for higher order things like orchestral, chamber, etc... But that little change will be quite convenient.
I'm particularly glad that entries auto collapse unless you specifically hit the arrow and not the artist/album name.
-
Ok quick question- I put [grouping] in front of album. The only slight hiccup is a backslash "\" in front of every entry that has no grouping. Not a big deal, but just for the heck of it I tried (fyi i've substituted "list" for [ list ] as it messed with the html:
if(!IsEmpty([grouping]),[Genre]\[Album Artist (auto)]\[Grouping]\[Album]&datatype="list",[Genre]\[Album Artist (auto)]\[Album]&datatype="list")
No more forward slash, but now all group-less albums titles were appended with "&datatype="list"" in the pane (ie Symphony 1 was displaying as Symphony 1&datatype="list".
So I tried I removed the text in red:
if(!IsEmpty([grouping]),[Genre]\[Album Artist (auto)]\[Grouping]\[Album]&datatype="list",[Genre]\[Album Artist (auto)]\[Album])
Everything looks good, but I'm afraid losing that &datatype="list" will have some undesired effect (like causing certain things to be hidden or not show up). My collection's big enough where I may not notice, finding myself suddenly in need of something I actually have.
-
Only one datatype cast is necessary per expression.
Reduce expression length by moving common terms out of If() statements:
[Genre]\[Album Artist (auto)]ifelse(!IsEmpty([grouping]), \[Grouping])\[Album]&datatype=[list]
Alternatively, use listbuild() to build a list such as this, where you want empty items ignored:
listbuild(1, \, [Genre], [Album Artist (auto)], [Grouping], [Album])&datatype=[list]
Regarding [list], see: https://yabb.jriver.com/interact/index.php?topic=72058.msg488007#msg488007
-
Working great. One minor issue that doesn't really affect me, but I'll mention nonetheless, is that if an album has a semi colon in it Album title (for instance Bach; Mass in B Minor), then it is file in the expression pane under the genre "Mass in B minor"
-
This would be a limitation of the conversion to a list type. The list parser in MC uses semicolons to designate sub-levels. You'd have to use something like Replace() (http://wiki.jriver.com/index.php/Media_Center_expression_language#Replace.28....29:_Replace_or_remove_strings_from_a_value.) to change semicolons into some other character (such as colon, or dash, or bullet, or star, ...).
-
Or you could just change the semicolon to a colon in the name since that is the proper punctuation. ;D
-
True, but I've tripped over this a bunch of times. Since colon is an illegal Windows FS character, Rename changes it from colon anyway, and Fill Properties from Filename would never be able to put it back anyway. I've pretty much given up those characters in Name.