Custom Properties Panel v3.3.4 (17-08-08) [MM3]

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

Moderators: Peke, Gurus

MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Re: Custom Properties Panel Version v1.1.3 (12-07-08) [MM3]

Post by MoDementia »

1.1.3 should be able to be downloaded now

Please restart MM after installing any version updates until I can figure out the install/uninstall issue thanks.
barkoz
Posts: 121
Joined: Fri May 02, 2008 5:58 pm
Location: Sydney, Australia

Re: Custom Properties Panel Version v1.1.3 (12-07-08) [MM3]

Post by barkoz »

No probs i'll be back
B :D
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Re: Custom Properties Panel Version v1.1.4 (12-07-08) [MM3]

Post by MoDementia »

barkoz wrote:No probs i'll be back
B :D
Sooner than you thought I'll bet :)

I knew this would happen. Just when I thought I wouldn't be able to find the install/uninstall issue in a reasonable time frame ...

Here you go a new version

' 12-07-08 Version 1.1.4
' Fixed Install over existing version and uninstall issues
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Re: Custom Properties Panel Version v1.1.5 (12-07-08) [MM3]

Post by MoDementia »

I can't help myself, this is fun :)

New Version

' 12-07-08 Version 1.1.5
' DropDown and Text box now have skin colours Screen shot on the first post
barkoz
Posts: 121
Joined: Fri May 02, 2008 5:58 pm
Location: Sydney, Australia

Re: Custom Properties Panel Version v1.1.5 (12-07-08) [MM3]

Post by barkoz »

I like this Mo, looks like it has a lot of potential. Would love to be able to select and update a whole album or playlist, I've just started tagging using the Custom (1) fields to separate Male and Female vocals, still working on the best way to use the others. I want to get it right the first time because I have around 110,000 tracks and it's getting harder and harder to wade through everything. Thank's for the prompt service too. LOL :D :D :D :D :D
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Re: Custom Properties Panel Version v1.1.5 (12-07-08) [MM3]

Post by MoDementia »

Glad you like it

For bulk updates use the "real" properties form, this is mainly a way to keep an eye on fields while your browsing/playing and fix up the odd typo etc.
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Re: Custom Properties Panel Version v1.1.5 (12-07-08) [MM3]

Post by MoDementia »

***Warning***

I'm pretty sure this is a MM bug not a script bug reported here

Basically it means DO NOT use the script with tracks selected in the Now Playing List panel. Use the Now Playing node if needed.

Another possible MM bug reported here Annoying but doesn't effect function
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Re: Custom Properties Panel Version v1.1.5 (12-07-08) [MM3]

Post by MoDementia »

Fixing Text Box Borders

1. Edit the ...Scripts\PropertiesPanel\skin.css or your chosen ...\Scripts\MonkeyRok\skins\Chosen Skin\skin.css
Copy the .odd and .even sections , rename them .odd_border and .even_border and add the line border: 1px solid rgb(184,143,98);
Change rgbrgb(184,143,98) to what ever colour you need (one of the otheres in the skin.css
e.g.

Code: Select all

.odd {
   background-color:rgb(184,143,98);
   color:#000000;
}
.even {
   background-color:rgb(162,121,78);
   color:#000000;
}

.odd_border {
   background-color:rgb(184,143,98);
   color:#000000;
   border: 1px solid rgb(162,121,78);
}
.even_border {
   background-color:rgb(162,121,78);
   color:#000000;
   border: 1px solid rgb(184,143,98);
}
2. Replace the section in ...Scripts\Auto\PropertiesPanel.vbs
From

Code: Select all

Function odd(i)
  Dim j : j = i / 2
  If Int(j) = j Then
    odd = "even"
  Else
    odd = "odd"
  End If
End Function
to

Code: Select all

Function odd(i)
  Dim j : j = i / 2
  Select Case ini.StringValue("PropertiesPanel", "DataSetSelect")
    Case "Playlists (Static)"
      If Int(j) = j Then
        odd = "even"
      Else
        odd = "odd"
      End If
    Case "Custom Fields"
      If Int(j) = j Then
        odd = "even_border"
      Else
        odd = "odd_border"
      End If
  End Select    
End Function
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Re: Custom Properties Panel Version v1.1.6 (13-07-08) [MM3]

Post by MoDementia »

New Version

' 13-07-08 Version 1.1.6
' Fixed adding new quoted values again
' Added Options Sheet for Custom Field data set display options
' Default skin has odd/even_border and auto hide scroll bar entries (copy/edit them into your Monkey Rock Skin)

Basically it lets you change the display of the custom fields panel. Include/exclude dropdown and or text boxes.
Eyal
Posts: 3123
Joined: Sun Jun 26, 2005 9:27 am
Location: Québec
Contact:

Re: Custom Properties Panel Version v1.1.6 (13-07-08) [MM3]

Post by Eyal »

Wow MoDementia this script is great.

I don't know if it was intended for, or I doing something wrong,
but is it possible in Selected Mode to apply the dropdown choice to all selected tracks?
If I select an album in Album node and the select something in the dropdown list, it
seem to apply the change to only 1 track.

Thanks
Skins for MediaMonkey: Cafe, Carbon, Helium, Spotify, Zekton. [ Wiki Zone ].
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Re: Custom Properties Panel Version v1.1.6 (13-07-08) [MM3]

Post by MoDementia »

Thanks, glad you like it.

Yes it is only doing the first selected track by design.

It can get a little tricky dealing with more than one track selected (what to display, what not to display, when dropdown is showing/not showing etc)
It would have to do a bit of preprocessing before updating the panel.

I may come back and visit it once it settles down and I have added a few more data set panels.
Eyal
Posts: 3123
Joined: Sun Jun 26, 2005 9:27 am
Location: Québec
Contact:

Re: Custom Properties Panel Version v1.1.6 (13-07-08) [MM3]

Post by Eyal »

Thanks for quick response.
Suggestion: In case more than 1 track is selected, it displays the nb of selected tracks instead of the title
and ask confirmation when hitting OK button.

Eyal
Skins for MediaMonkey: Cafe, Carbon, Helium, Spotify, Zekton. [ Wiki Zone ].
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Re: Custom Properties Panel Version v1.1.6 (13-07-08) [MM3]

Post by nynaevelan »

MoDementia wrote:
Basically it lets you change the display of the custom fields panel. Include/exclude dropdown and or text boxes.
Out of curiosity, why would you want to exclude the drop down boxes, is that for cosmetic reasons? Or so that you can view the information without the ability to edit them?

Nyn
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
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Re: Custom Properties Panel Version v1.1.6 (13-07-08) [MM3]

Post by MoDementia »

If you have lots of different values the list maybe unwieldy so you can just display the current value but still update it with the text box

Or just display values in a smaller (faster loading) panel
Mizery_Made
Posts: 2283
Joined: Tue Aug 29, 2006 1:09 pm
Location: Kansas City, Missouri, United States

Re: Custom Properties Panel Version v1.1.6 (13-07-08) [MM3]

Post by Mizery_Made »

I just now checked this out after seeing you added a Custom Fields panel. However two issues I have which turn me off from using your script is that it hits performance hard. The most annoying though is the fact that it doesn't appear that the changes are saved to the tag.
Post Reply