INTERACT FORUM
More => Old Versions => JRiver Media Center 18 for Windows => Topic started by: jmone on July 18, 2013, 02:25:40 am
-
Newbie Q - how do you get a second row of text under the Std View Album Art instead of it being truncated (see pic)?
Thanks
Nathan
-
I don't think you can.
Well, you can, but I think that what you want is for the text to wrap onto a second line, and we can't force that.
-
Yup - I just want to be able to read the full title. Eg line wrap over truncate. I must be old as I remember the coverart would shrink to accommodate the extra line, then we went to fixed sized coverart but I thought we could specify a two line text.....
-
FYI - Theater View gives us two lines....
-
You can do multi-line, not wrapping of a single line. See attached.
See the view's Thumbnail Text. Use newlines to break a line.
-
Thanks anyway, but I'm after a line wrap for up to two lines (like in the Theater View example)
-
Use the Simulatron 5000.
mid([Name] [Album], 0, 13)
mid([Name] [Album], 13, 20)
-
Okay, to add to the challenge, can you rewrite that so that it breaks at a space, so words aren't broken up? i suppose you'll have to pick a space that's about 10 to 15 characters from the beginning to look 'right'.
No big deal if you don't want to bother to do it, I'm mostly just throwing down the challenge because I'm normally so impressed with your abilities to create this stuff.
-
:) that's the great thing about MC - where there is a will there is a way, and in this case it is MrC
mid([Name], 0, 17)
mid([Name], 17, 34)
works OK for me....
-
Okay, to add to the challenge, can you rewrite that so that it breaks at a space, so words aren't broken up? i suppose you'll have to pick a space that's about 10 to 15 characters from the beginning to look 'right'.
No big deal if you don't want to bother to do it, I'm mostly just throwing down the challenge because I'm normally so impressed with your abilities to create this stuff.
Not practically, as there's no way to handle it generically; handling it for just a few cases creates a nasty nesting of if() statements. Because there might be short words in the captions, such as:
"It Is A or B I Do So Wonder"
You have to check something like this:
if word1 < linelen
if word1 word2 < linelen
if word1 word2 word3 < linelen
if word1 word2 word3 word4 < linelen
...
and handle all the Else parts.
You can't introduce newlines into the caption / thumbnail via the expression language. Rather, the additional lines in the caption/thumbnail text editor is what forces additional lines in the output. So you can't programmatically add additional lines as required by the output text. So this forces you to predetermine that you'll always want N lines of output, and check each of the cases above if the nasty If() sequence.
And then there is splitting after punctuation to deal with...
-
The handling of this in TheaterView works well, perhaps a low priority request to add this as an option in StdView.
-
Like I said, not a big deal, but I figured you do some sort of 'find first space more than 10 characters deep, then remove space, then move remaining text to next line' type of thing.
I wonder how Matt manages in Theater View?
Again, no need for you to spend any more time on this, and thanks for the time you have already spent. I was really more curious than anything else.
-
With loops and recursion, its much easier. We don't have those though.