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.


Messages - stax76

Pages: 12
1
MusicBee Wishlist / Re: Issue pressing Shift key on startup
« on: June 08, 2022, 06:10:06 PM »
Following works well:

Code
+^F10::
while GetKeyState("LControl")
{
    Sleep, 50
}
Run "C:\Program Files (x86)\MusicBee\MusicBee.exe"
return

2
MusicBee Wishlist / Re: Issue pressing Shift key on startup
« on: February 14, 2022, 02:34:36 PM »
There is the concept of key up and key down event, when MB starts the key is still pressed, a workaround is to release the keys quickly.

3
MusicBee Wishlist / Re: Issue pressing Shift key on startup
« on: February 14, 2022, 10:30:36 AM »
I use the shortcuts for global keys defined in AutoHotkey.

Code
+^F11::Run "C:\Program Files (x86)\MusicBee\MusicBee.exe"

4
MusicBee Wishlist / Re: Issue pressing Shift key on startup
« on: February 14, 2022, 06:58:50 AM »
It seems you don't understand what I'm asking for. Shift without Ctrl isn't equal to Shift+Ctrl, I'm asking to not show the library dialog when Shift+Ctrl is pressed while startup.

5
MusicBee Wishlist / Issue pressing Shift key on startup
« on: February 13, 2022, 05:18:35 PM »
I use a Cherry Stream keyboard and AutoHotkey for global shortcut keys using Shift+Ctrl+F1, Shift+Ctrl+F2, Shift+Ctrl+F3 etc.

Unfortunately, with MusicBee this will not work because it shows a dialog for library selection, maybe you can change it to show the library selection dialog only when Shift is pressed without Ctrl? That would be a great help for me, otherwise I will have to start MusicBee with Flow Launcher, which is slightly more inconvenient.

6
Thanks for the help.

7
Thank you but it does not work, I'll look for documentation or a tutorial, hints are welcome.


edit:

I saw now that you edited your post, I'll try it again with the edited post.


edit 2:

I tried your first formular and it's not working, it results in an empty display.


edit 3:

It works with a simplified formular:

Code
$Date(<Date Added>,dd.MM.yyyy)

Thanks for the help, have a good day.

8
Hello,

can the display of the time be hidden from all columns? I would prefer using this space for something else.

I mean the times highlighted in the following screenshot:

https://postimg.cc/WhT5YtsJ

9
Bug Reports / Re: High DPI Problem 288 DPI (300 % Zoom)
« on: May 26, 2019, 06:03:57 AM »
Works perfectly now, thanks!

There are a couple of minor High DPI glitches using 288 DPI.

My dream is to have a glitch free portable app (Windows/Linux) but that's far away, maybe it will never happen.

10
Bug Reports / Re: High DPI Problem 288 DPI (300 % Zoom)
« on: May 20, 2019, 06:37:40 PM »
Thanks. MusicBee is too good, it's probably the only app that is really holding me back from trying Linux. :)

11
Bug Reports / Re: High DPI Problem 288 DPI (300 % Zoom)
« on: May 19, 2019, 08:54:50 PM »
30% of the bottom buttons are visible so it's usable now.

Suggestion:

if Height > Screen.WorkingArea.Height then Height = Screen.WorkingArea.Height

12
Bug Reports / Re: High DPI Problem 288 DPI (300 % Zoom)
« on: May 19, 2019, 01:06:55 PM »
Thanks for the quick help, much appreciated. The form is still a little bit higher than the working area and the confirm button is behind the task bar.


https://postimg.cc/kVfz3Q9x

13
Bug Reports / High DPI Problem 288 DPI (300 % Zoom)
« on: May 18, 2019, 08:58:11 PM »
Hello,

something must have changed because I've used this dialog many times before without problems.

https://postimg.cc/Q9fdyfJM

14
MusicBee API / Re: using api to change rating in auto playlist
« on: March 15, 2017, 08:00:02 PM »
Thanks for the build, works fine.


I'm pretty much finished with my migration from MM, I was using it almost daily 11 years, R.I.P.

15
MusicBee API / using api to change rating in auto playlist
« on: March 14, 2017, 10:59:13 AM »
I'm changing the rating which works fine. How do I remove the track from the current view if it don't fit the rating criteria of the current auto playlist? The built in rating action does that too.

Code
    Sub Rate1(sender As Object, e As EventArgs)
        Dim currentPath = mbApiInterface.NowPlaying_GetFileUrl()
        mbApiInterface.Player_PlayNextTrack()
        mbApiInterface.Library_SetFileTag(currentPath, MetaDataType.Rating, "1")
        mbApiInterface.Library_CommitTagsToFile(currentPath)
        mbApiInterface.MB_RefreshPanels()
    End Sub


Pages: 12