INTERACT FORUM

More => Old Versions => JRiver Media Center 19 for Windows => Topic started by: marko on May 26, 2014, 01:44:09 pm

Title: Thumb text: Bug or format error?
Post by: marko on May 26, 2014, 01:44:09 pm
In my stack manager view, I added a thumb text line that compares the name and the filename (name), and if they're the same, just display, otherwise, show both, using red text.

It works as expected. The problem is, when the result is positive, subsequent thumb text shows inverted with a black background, as shown in the attached clip.

Is this a bug, known limitation or user error?

Thumb text used is:
Code: [Select]
if(isequal([Name],removeright([filename (name)],4),0),[name],<font color="ff0000">Name: [name] :: Filename: removeright([filename (name)],4))<//font>
if(isequal([stack files],),,if(isempty([stack view]),Top Image /(Expanded/),Top Image /(Collapsed/)))
[dimensions] ~ [file size]

-marko
Title: Re: Thumb text: Bug or format error?
Post by: MrC on May 26, 2014, 01:55:27 pm
I don't know that this is the cause, but you are opening the font tag only in the negative case, be closing the font tag always.  Move the close to the negative case.
Title: Re: Thumb text: Bug or format error?
Post by: marko on May 27, 2014, 01:02:48 am
That's fixed it.
I went over and over it last night and never spotted that! Working lovely now.

Thank you.