INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Any way to customize display in mouseover (hover) info shown  (Read 1725 times)

Doug S

  • Member
  • *
  • Posts: 3
Any way to customize display in mouseover (hover) info shown
« on: April 14, 2020, 08:22:25 am »

Is there any way to customize the information shown in the pop-up box that appears when you hover the mouse over a file? Specifically when in AUDIO>Files, I want to see more tagged fields than just the default Name/Artist/Album, along with the cover art and other file properties. I would like to be able to see the "Comment" and "Composer" fields, for example. Thanks!
Logged

Doug S

  • Member
  • *
  • Posts: 3
Re: Any way to customize display in mouseover (hover) info shown
« Reply #2 on: April 16, 2020, 04:14:57 pm »

Thanks for offering that, but none of what's described in that thread is getting at what I'm hoping to accomplish. Cheers. I would think it would be simple to select the info to appear in the pop-up window, but I guess not. Cheers.
Logged

wer

  • Citizen of the Universe
  • *****
  • Posts: 2640
Re: Any way to customize display in mouseover (hover) info shown
« Reply #3 on: April 16, 2020, 04:28:00 pm »

It's in there, Doug, just buried. That whole thread was about custom tooltips, going far beyond the simple stuff you're talking about.  Marko's very knowledgeable.

You need to create a custom field called [Tooltip] and then the calculated expression in this field can display anything, including all the stuff you want.

Look at this thread, which is simpler:
https://yabb.jriver.com/interact/index.php?topic=99227.0

The thread assumes certain elementary knowledge on the part of the reader.

A google search for "jriver customize tooltip" will also show you threads that will help you.

If you don't know how to create a field, google "jriver create field" and pay attention to the top three results.

Hope this helps...  Give it a try and let us know how you fared.

Good luck.
Logged

lepa

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 1971
Re: Any way to customize display in mouseover (hover) info shown
« Reply #4 on: April 17, 2020, 08:47:57 am »

Yep the first post in that jumbo thread marko refered has a link to that same thread wer also posted here. That's all you need now about custom tooltips to get started and if you get stuck just ask. Someone at some point will surely have time to help
Logged

HaWi

  • Citizen of the Universe
  • *****
  • Posts: 906
Re: Any way to customize display in mouseover (hover) info shown
« Reply #5 on: April 17, 2020, 10:42:08 am »

This is great. I have been playing with it but I can't get the Playlists to show in my customized Tooltip. Could someone please point me in the right direction?
Many thanks!
Hans
Logged
rPi5/8GB, Debian 12 Bookworm on SSD | JRMark (32.0.36 64 bit): 2699
MacBookPro (2013), 2.6 GHz Quad-Core Intel Core i7, MacOS 11.7.17 | JRMark (32.0.38 64 bit): 3764
Mac Studio M2 Max, 64GB, 1TB SSD, macOS Sonoma 14.4.1 | JRMark (32.0.38 64 bit): 9235
Docker Container (shiomax) DS1819+ | JRMark (32.0.36 64 bit): 1430
JRemote 3.43
MO 4Media 1.5.7 | Marantz SR7007 (RSL 5.1) HDMI to MacBookPro

lepa

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 1971
Re: Any way to customize display in mouseover (hover) info shown
« Reply #6 on: April 17, 2020, 12:35:53 pm »

This is great. I have been playing with it but I can't get the Playlists to show in my customized Tooltip. Could someone please point me in the right direction?
Many thanks!
Hans
I'm using this kind of notation:
If(!IsEmpty(FilePlaylists()),Playlists: FilePlaylists(),Playlists: -)
So if file is included in playlist(s) it will be shown after label "Playlists: " and if not output is just "Playlists: -"

E: Got a tip how to achieve same thing faster (function gets called only once using this syntax) and also bit cleaner. So I share it here also.
Code: [Select]
Playlists: FirstNotEmpty(FilePlaylists(), -)
Logged

HaWi

  • Citizen of the Universe
  • *****
  • Posts: 906
Re: Any way to customize display in mouseover (hover) info shown
« Reply #7 on: April 17, 2020, 01:06:54 pm »

Thanks lepa, I'll give that a go
cheers,
Hans
Logged
rPi5/8GB, Debian 12 Bookworm on SSD | JRMark (32.0.36 64 bit): 2699
MacBookPro (2013), 2.6 GHz Quad-Core Intel Core i7, MacOS 11.7.17 | JRMark (32.0.38 64 bit): 3764
Mac Studio M2 Max, 64GB, 1TB SSD, macOS Sonoma 14.4.1 | JRMark (32.0.38 64 bit): 9235
Docker Container (shiomax) DS1819+ | JRMark (32.0.36 64 bit): 1430
JRemote 3.43
MO 4Media 1.5.7 | Marantz SR7007 (RSL 5.1) HDMI to MacBookPro

HaWi

  • Citizen of the Universe
  • *****
  • Posts: 906
Re: Any way to customize display in mouseover (hover) info shown
« Reply #8 on: April 17, 2020, 01:22:14 pm »

I'm using this kind of notation:
If(!IsEmpty(FilePlaylists()),Playlists: FilePlaylists(),Playlists: -)
So if file is included in playlist(s) it will be shown after label "Playlists: " and if not output is just "Playlists: -"

Works brilliantly! May I ask one more: is there a way to make the thumbnail that appears on the Tooltip bigger?
many thanks,
Hans
Logged
rPi5/8GB, Debian 12 Bookworm on SSD | JRMark (32.0.36 64 bit): 2699
MacBookPro (2013), 2.6 GHz Quad-Core Intel Core i7, MacOS 11.7.17 | JRMark (32.0.38 64 bit): 3764
Mac Studio M2 Max, 64GB, 1TB SSD, macOS Sonoma 14.4.1 | JRMark (32.0.38 64 bit): 9235
Docker Container (shiomax) DS1819+ | JRMark (32.0.36 64 bit): 1430
JRemote 3.43
MO 4Media 1.5.7 | Marantz SR7007 (RSL 5.1) HDMI to MacBookPro

lepa

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 1971
Re: Any way to customize display in mouseover (hover) info shown
« Reply #9 on: April 17, 2020, 02:51:16 pm »

AFAIK you can't really control thumbnail size in the tooltip specifically but if add more rows to your tooltip template, the thumbnail will also scale bigger

E: Also updated playlist print out to quicker syntax according to tip I got.
Code: [Select]
Playlists: FirstNotEmpty(FilePlaylists(), -)
Logged

HaWi

  • Citizen of the Universe
  • *****
  • Posts: 906
Re: Any way to customize display in mouseover (hover) info shown
« Reply #10 on: April 17, 2020, 05:00:23 pm »

AFAIK you can't really control thumbnail size in the tooltip specifically but if add more rows to your tooltip template, the thumbnail will also scale bigger

E: Also updated playlist print out to quicker syntax according to tip I got.
Code: [Select]
Playlists: FirstNotEmpty(FilePlaylists(), -)

Thank you for the tip! Works brilliantly.
cheers,
Hans
Logged
rPi5/8GB, Debian 12 Bookworm on SSD | JRMark (32.0.36 64 bit): 2699
MacBookPro (2013), 2.6 GHz Quad-Core Intel Core i7, MacOS 11.7.17 | JRMark (32.0.38 64 bit): 3764
Mac Studio M2 Max, 64GB, 1TB SSD, macOS Sonoma 14.4.1 | JRMark (32.0.38 64 bit): 9235
Docker Container (shiomax) DS1819+ | JRMark (32.0.36 64 bit): 1430
JRemote 3.43
MO 4Media 1.5.7 | Marantz SR7007 (RSL 5.1) HDMI to MacBookPro

Doug S

  • Member
  • *
  • Posts: 3
Re: Any way to customize display in mouseover (hover) info shown
« Reply #11 on: April 25, 2020, 04:34:55 pm »

Mountains of thanks to marko, wer and lepa for wading into my shallow end of the pool to help. At first I failed, despite following the crystal clear instructions. But then, voilą! I changed the custom Library field I had created from [Tooltip] to Tooltip (removing the brackets), and it worked like a charm.

I'm coming from a level of knowledge that views this stuff like some kind of magic, so this feels pretty miraculous. I am grateful to each of you!
Logged

lepa

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 1971
Re: Any way to customize display in mouseover (hover) info shown
« Reply #12 on: April 26, 2020, 04:10:54 am »

Glad you got it working :) Now sky (and time) is the limit  ;D
Mine looks currently like this. It uses some custom images and custom fields also.
Logged

wer

  • Citizen of the Universe
  • *****
  • Posts: 2640
Re: Any way to customize display in mouseover (hover) info shown
« Reply #13 on: April 26, 2020, 04:35:46 am »

Don't try to imitate Lepa too soon, Doug... You'll do yourself an injury.

He's the tooltip master!
Logged

lepa

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 1971
Re: Any way to customize display in mouseover (hover) info shown
« Reply #14 on: April 26, 2020, 05:18:17 am »

Oh, come on wer. Just an image to show modest setup :)  I need more people to steal ideas from and I came to all the way to Mac are to possibly get something :D
Logged
Pages: [1]   Go Up