INTERACT FORUM

More => Old Versions => JRiver Media Center 18 for Windows => Topic started by: jmone on July 18, 2013, 02:25:40 am

Title: Std View : How to get 2nd Line of Text under Album Art?
Post 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
Title: Re: Std View : How to get 2nd Line of Text under Album Art?
Post by: marko on July 18, 2013, 02:45:11 am
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.
Title: Re: Std View : How to get 2nd Line of Text under Album Art?
Post by: jmone on July 18, 2013, 02:52:07 am
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.....
Title: Re: Std View : How to get 2nd Line of Text under Album Art?
Post by: jmone on July 18, 2013, 06:12:54 am
FYI - Theater View gives us two lines....
Title: Re: Std View : How to get 2nd Line of Text under Album Art?
Post by: MrC on July 18, 2013, 10:58:22 am
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.
Title: Re: Std View : How to get 2nd Line of Text under Album Art?
Post by: jmone on July 18, 2013, 04:21:56 pm
Thanks anyway, but I'm after a line wrap for up to two lines (like in the Theater View example)
Title: Re: Std View : How to get 2nd Line of Text under Album Art?
Post by: MrC on July 18, 2013, 04:47:32 pm
Use the Simulatron 5000.

mid([Name] [Album], 0, 13)
mid([Name] [Album], 13, 20)
Title: Re: Std View : How to get 2nd Line of Text under Album Art?
Post by: JustinChase on July 18, 2013, 05:24:56 pm
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.
Title: Re: Std View : How to get 2nd Line of Text under Album Art?
Post by: jmone on July 18, 2013, 05:32:52 pm
:) 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....
Title: Re: Std View : How to get 2nd Line of Text under Album Art?
Post by: MrC on July 18, 2013, 06:03:04 pm
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...
Title: Re: Std View : How to get 2nd Line of Text under Album Art?
Post by: jmone on July 18, 2013, 06:07:20 pm
The handling of this in TheaterView works well, perhaps a low priority request to add this as an option in StdView.
Title: Re: Std View : How to get 2nd Line of Text under Album Art?
Post by: JustinChase on July 18, 2013, 06:12:11 pm
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.
Title: Re: Std View : How to get 2nd Line of Text under Album Art?
Post by: MrC on July 18, 2013, 06:16:11 pm
With loops and recursion, its much easier.  We don't have those though.