Page 2 of 12

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

Posted: Sat Jul 12, 2008 12:58 am
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.

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

Posted: Sat Jul 12, 2008 1:05 am
by barkoz
No probs i'll be back
B :D

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

Posted: Sat Jul 12, 2008 1:30 am
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

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

Posted: Sat Jul 12, 2008 3:48 am
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

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

Posted: Sat Jul 12, 2008 8:09 am
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

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

Posted: Sat Jul 12, 2008 8:25 am
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.

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

Posted: Sat Jul 12, 2008 3:10 pm
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

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

Posted: Sat Jul 12, 2008 6:51 pm
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

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

Posted: Sun Jul 13, 2008 1:49 am
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.

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

Posted: Sun Jul 13, 2008 6:50 am
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

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

Posted: Sun Jul 13, 2008 8:08 am
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.

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

Posted: Sun Jul 13, 2008 8:14 am
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

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

Posted: Sun Jul 13, 2008 8:37 am
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

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

Posted: Sun Jul 13, 2008 8:57 am
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

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

Posted: Sun Jul 13, 2008 9:17 am
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.