Search found 9 matches

by m42i
Sun Oct 12, 2014 9:09 am
Forum: Bug Reports (MMW4)
Topic: Reading replaygain tags in id3v2.4 not robust
Replies: 0
Views: 1332

Reading replaygain tags in id3v2.4 not robust

I'm sure this has come up at some point and I hope I didn't miss something, but I couldn't find anything doing a quick search. MMW 4.1.4.1709 only recognizes replaygain tags in mp3 files with id3v2.4 tags if they're in the following format: replaygain_track_gain -1.9 dB (lower case, 'dB' as unit) E ...
by m42i
Thu Oct 03, 2013 6:46 am
Forum: MediaMonkey 4 Addons developer forum
Topic: Implementing OnKey events
Replies: 0
Views: 2197

Implementing OnKey events

I'm trying to register some keyboard shortcuts for a NewForm panel but I can't get it working. Here is what I've tried: Sub OnStartup Set UI = SDB.UI Set MainPanel = UI.NewForm MainPanel.BorderStyle = 2 MainPanel.Common.Align = alClient Script.RegisterEvent MainPanel.Common, "OnKeyUp ...
by m42i
Sun Apr 07, 2013 11:43 am
Forum: MediaMonkey 4 Addons developer forum
Topic: SDBIniFile.Keys returns key and value
Replies: 0
Views: 2061

SDBIniFile.Keys returns key and value

I'm not sure if it's intended, but when I call SDB.IniFile.Keys, I get a list of strings in the format "key=value". Either that is not intended, or the wiki isn't specific about it: http://www.mediamonkey.com/wiki/index.p ... File::Keys (I've updated the wiki accordingly)
by m42i
Sat Apr 06, 2013 1:20 pm
Forum: MediaMonkey 4 Addons developer forum
Topic: Resizing elements when parent dockable panel is resized
Replies: 3
Views: 2786

Re: Resizing elements when parent dockable panel is resized

Ok, I found my mistake. I thought the names in parenthesis in the wiki were constants. After defining them, it works fine. :)
by m42i
Sat Apr 06, 2013 12:50 pm
Forum: MediaMonkey 4 Addons developer forum
Topic: Looking for help improving my first script
Replies: 6
Views: 5826

Re: Looking for help improving my first script

- Automatically select newly created playlist I think I could get this to work by iterating through all playlists and finding the correct one if there isn't a shortcut. Iterating through the playlists is the way that my scripts do this, including TagCloud and SimilarArtists. I looked at your ...
by m42i
Sat Apr 06, 2013 11:24 am
Forum: MediaMonkey 4 Addons developer forum
Topic: Looking for help improving my first script
Replies: 6
Views: 5826

Re: Looking for help improving my first script

Thank you, trixmoto. I'll have a look at your scripts. - Automatically hide Now Playing List, Player and "Image and Detail" window This would be nice, but getting the current visible state of each would be ok too. These details will either be stored in MediaMonkey.ini or the registry, so you can ...
by m42i
Fri Apr 05, 2013 10:11 am
Forum: MediaMonkey 4 Addons developer forum
Topic: Resizing elements when parent dockable panel is resized
Replies: 3
Views: 2786

Re: Resizing elements when parent dockable panel is resized

One possibility that occurred to me is, to make a new RedrawTimer, that will refresh the size of all elements every second or so. But I'd hope for a more elegant way to do this.
by m42i
Fri Apr 05, 2013 9:47 am
Forum: MediaMonkey 4 Addons developer forum
Topic: Resizing elements when parent dockable panel is resized
Replies: 3
Views: 2786

Resizing elements when parent dockable panel is resized

I've got a persistent dockable panel with some elements inside. When I resize the panel those elements won't resize with them. Here is my sample code. When I resize the PanelX, the ActiveX control inside won't resize with it. https://dl.dropbox.com/u/344000/Demo.mmip ' Demo file for resizing a ...
by m42i
Thu Apr 04, 2013 5:26 pm
Forum: MediaMonkey 4 Addons developer forum
Topic: Looking for help improving my first script
Replies: 6
Views: 5826

Looking for help improving my first script

Hello fellow developers, I've written my first script for MM 4.0 (didn't use MM before). "Quizzor" is a script to help performing a music quiz with friends. More details at the project's page: http://github.com/m42i/Quizzor The forum and wiki were a good resource, but there are some things I couldn ...