Song Information Panel v2.0 (2009-09-19) [MM3]

Download and get help for different MediaMonkey for Windows 4 Addons.

Moderators: Peke, Gurus

Eyal
Posts: 3116
Joined: Sun Jun 26, 2005 9:27 am
Location: Québec

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by Eyal »

You could also remove all "Show" words. Example:

-- Show Basic Tags: -----------
-- [ ] Track number
-- [ ] Song title
-- [ ] ...

You could also narrow line spacing.
Skins for MediaMonkey: Cafe, Carbon, Helium, Spotify, Zekton. [ Wiki Zone ].
k_r_eriksson
Posts: 185
Joined: Mon Aug 14, 2006 4:26 pm
Location: Gotland, Sweden

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by k_r_eriksson »

Peke wrote:@k_r_eriksson
Try to save Panel Object and then access when needed. See how I do it in Last.fm Scrobbler Script to Change Toolbar button realtime.
Where can I find the script and I'm not sure I understand what you mean.
nohitter151
Posts: 23640
Joined: Wed Aug 09, 2006 10:20 am
Location: NJ, USA
Contact:

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by nohitter151 »

k_r_eriksson wrote:
Peke wrote:@k_r_eriksson
Try to save Panel Object and then access when needed. See how I do it in Last.fm Scrobbler Script to Change Toolbar button realtime.
Where can I find the script and I'm not sure I understand what you mean.
http://www.mediamonkey.com/addons/general/
MediaMonkey user since 2006
Need help? Got a suggestion? Can't find something?

Please no PMs in reply to a post. Just reply in the thread.
dypsis
Posts: 1335
Joined: Wed Apr 30, 2008 9:51 pm

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by dypsis »

Could someone please explain to me what this script offers over MediaMonkey with MonkeyRok?
I don't really understand. :roll:

Or is it for people who don't use MonkeyRok?
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by nynaevelan »

I am a user of MR and SI, and I find this one allows me to show more tag information that MR does not have avaialble. Also, this one allows me to show tag information while MR is showing Statistical information, so once again more information.
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by Vyper »

Same here and it is particularly useful on skins such as 'Spotify' where Now Playing information is not displayed on the player. :)
Stop Button Freak
nohitter151
Posts: 23640
Joined: Wed Aug 09, 2006 10:20 am
Location: NJ, USA
Contact:

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by nohitter151 »

dypsis wrote:Could someone please explain to me what this script offers over MediaMonkey with MonkeyRok?
I don't really understand. :roll:

Or is it for people who don't use MonkeyRok?
Also MonkeyRok retrieves a lot of information from last.fm, this script only returns information which is already available in the library (but not necessarily easy to display).
MediaMonkey user since 2006
Need help? Got a suggestion? Can't find something?

Please no PMs in reply to a post. Just reply in the thread.
declan
Posts: 85
Joined: Wed Sep 20, 2006 3:55 pm

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by declan »

Is it possible to have lyricist as a seperate item to songwriter. I use that for record company.
k_r_eriksson
Posts: 185
Joined: Mon Aug 14, 2006 4:26 pm
Location: Gotland, Sweden

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by k_r_eriksson »

declan wrote:Is it possible to have lyricist as a seperate item to songwriter. I use that for record company.
It is possible but I don't want to split them and show them in different brackets. If more users want me to split them I will but for now I'll leave it as it is.

Can't you use Publisher for record company?

If you know how to you can edit the script yourself. Open SongInformation.vbs in notepad and change line 431 from

Code: Select all

  
  If showComposer = True Then
    If Not Sng.Author & Sng.Lyricist = "" Then
      If Sng.Author="" Then
        w=Sng.Lyricist
      ElseIf Sng.Lyricist="" Then
        w=Sng.Author
      Else:w=Sng.Author & ";" & Sng.Lyricist
      End If
      Doc.Add "             <span class=""composer""> <h5>(" & FixMultipleValues(w) & ")</h5></span>"
    End If
  End If
To

Code: Select all

  
  If showComposer = True Then    
    If Not Sng.Author  = "" Then
       Doc.Add "             <span class=""composer""> <h5>(" & FixMultipleValues(Sng.Author) & ")</h5></span>"
    End If
  End If
  
  If Not Sng.Lyricist = "" Then
    Doc.Add "             <span class=""lyricist""> <h4>" & Sng.Lyricist & "</h4></span>"
  End If
You can't turn this information off in the option panel. What you can do is edit the script and put a ' in front of the last three lines. Like this

Code: Select all

 ' If Not Sng.Lyricist = "" Then
 '   Doc.Add "             <span class=""lyricist""> <h4>" & Sng.Lyricist & "</h4></span>"
 ' End If
k_r_eriksson
Posts: 185
Joined: Mon Aug 14, 2006 4:26 pm
Location: Gotland, Sweden

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by k_r_eriksson »

nohitter151 wrote:
dypsis wrote:Could someone please explain to me what this script offers over MediaMonkey with MonkeyRok?
I don't really understand. :roll:

Or is it for people who don't use MonkeyRok?
Also MonkeyRok retrieves a lot of information from last.fm, this script only returns information which is already available in the library (but not necessarily easy to display).
Is there any other information you would like SI to display? :)
nohitter151
Posts: 23640
Joined: Wed Aug 09, 2006 10:20 am
Location: NJ, USA
Contact:

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by nohitter151 »

k_r_eriksson wrote:
nohitter151 wrote: Also MonkeyRok retrieves a lot of information from last.fm, this script only returns information which is already available in the library (but not necessarily easy to display).
Is there any other information you would like SI to display? :)
No, don't get me wrong, I think this script is great! I was just trying to point out how it is different from MonkeyRok. Certainly this script has several features that MonkeyRok doesn't have, and vice versa.
MediaMonkey user since 2006
Need help? Got a suggestion? Can't find something?

Please no PMs in reply to a post. Just reply in the thread.
k_r_eriksson
Posts: 185
Joined: Mon Aug 14, 2006 4:26 pm
Location: Gotland, Sweden

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by k_r_eriksson »

nohitter151 wrote:
k_r_eriksson wrote:
nohitter151 wrote: Also MonkeyRok retrieves a lot of information from last.fm, this script only returns information which is already available in the library (but not necessarily easy to display).
Is there any other information you would like SI to display? :)
No, don't get me wrong, I think this script is great! I was just trying to point out how it is different from MonkeyRok. Certainly this script has several features that MonkeyRok doesn't have, and vice versa.
And don't get me wrong :D I did understand what you where saying. I just wanted to ask if there is any other tags that you or any other user would like me to add.

I won't add Lyrics, comments and album art.
declan
Posts: 85
Joined: Wed Sep 20, 2006 3:55 pm

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by declan »

Can't you use Publisher for record company?
Publisher doesn't appear in the browser or the main list.
k_r_eriksson
Posts: 185
Joined: Mon Aug 14, 2006 4:26 pm
Location: Gotland, Sweden

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by k_r_eriksson »

The custom fields?
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Re: Song Information Panel v2.0 (2009-09-19) [MM3]

Post by nynaevelan »

KR:

Would it be too much trouble to add the Medias.Label to the File Tags section?
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
Post Reply