Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Spicefly

Pages: 1
1
MusicBee API / API - NowPlayingList Size
« on: December 12, 2020, 09:15:34 PM »
Hi

I'm adding tracks and trying to limit the size of the NowPlayingList to remove older played tracks.

I had a look at mbApiInterface.NowPlayingList_IsAnyPriorTracks() but this just return true/false and I can't seem to find a function to return the size of the list?

Thanks in advance

2
MusicBee API / MusicBeePlugin.Plugin.MetaDataType Playcount?
« on: June 03, 2017, 12:30:16 AM »
Hey

I'm looking to pull a track's playcount metadata from the library for a given track.  However I couldn't find a playcount for MusicBeePlugin.Plugin.MetaDataType

Is it exposed, or can I pull it via some other means?

Cheers

3
TheaterMode / PlayerBar Button Size
« on: June 01, 2017, 11:59:13 PM »
Hi

Is it possible to change the size of the PlayerBar Play/FFwd buttons etc?  I plan to use MusicBee in a car on a roadtrip and trying to press the buttons when they are only 1cm in a moving car might be a challenge :)

<element type="PlayerBar" extras="ProgressBar" x="3" y="10" width="250" height="50" bdr="230,20,20,20" bg="230,20,20,20" fg="245,245,245" fg2="200,200,200" ></element>

Changing the width/height only makes the bar itself bigger and not the scaling of the buttons?

Cheers

4
MusicBee API / Importing data into MusicBee
« on: May 21, 2017, 09:51:28 PM »
Hi

I have a ton of playcount and track rating that I can export to an xml file.  I would like to import this into MusicBee but it looks to be using a bespoke format? and not for example a sqlite database?  I was hoping for a simple column I could have matched and imported  ;D

Any suggestions on how to import the data?

Cheers

5
MusicBee API / AddMenuItem - Creating sub-menus
« on: May 20, 2017, 02:57:13 PM »
Hi

How do I create a menu with sub-menu items?

This works (as per the docs)
            mbApiInterface.MB_AddMenuItem("mnuTools/xx", "hello", menuClicked);

This doesn't work;
            mbApiInterface.MB_AddMenuItem("mnuTools/xx/aa", "hello", menuClicked);
            mbApiInterface.MB_AddMenuItem("mnuTools/xx/aa/", "hello", menuClicked);

I want to create about three menu items, so it makes sense for them to be sub-items


Thanks in advance

Pages: 1