Search found 5 matches

by tvjunky
Thu Sep 29, 2005 12:04 am
Forum: Need Help with Addons? (MMW4)
Topic: new Script: hard links
Replies: 6
Views: 5290

new Script: hard links

So here's a script I've been working on for a while, hardlinks.vbs. I hope you enjoy it :wink: Description: Hardlinks.vbs creates hard links for your media files. If you are not familiar with the concept of hard links check out http://www.elsdoerfer.info/ntfslink/ , while you're at it grab the "...
by tvjunky
Tue Sep 13, 2005 9:57 pm
Forum: Deutsches Forum
Topic: Lokale Freedb Datenbank einbinden
Replies: 6
Views: 3668

Also ich weiß nicht ob es bei MediaMonkey möglich ist einen alternativen FreeDB-Server einzustellen, aber vielleicht hilft dir das Programm JeFCo weiter, ich weiß zwar nicht genau was du vor hast, aber die Chancen sind gut das es in diese Richtung geht. Ansonsten ist es eigentlich fast immer möglich...
by tvjunky
Sun Sep 11, 2005 1:26 pm
Forum: Need Help with Addons? (MMW4)
Topic: Script doesn't work, please help....
Replies: 2
Views: 2448

I think the reason you are experiencing this behavior is because the wrong AlbumArtist is reread from the file's Tag whenever you reload the folder. Calling "itm.WriteTags" for every song will probably solve your problem.
If you're bored also have a look at the help file.

hth, tvjunky
by tvjunky
Sun Aug 21, 2005 1:55 pm
Forum: Need Help with Addons? (MMW4)
Topic: Add a HTML link to a Seperate -Web Node - Menu Bar - Toolbar
Replies: 6
Views: 13355

How about that, it'll be located in the Tools Menu under "Scripts": openlink.vbs: ' Opens a website in a browser window. Most of it is taken ' from the examples in MediaMonkeyScripting.chm Option Explicit Dim LinkURL Sub OpenLink LinkURL = "http://www.mediamonkey.com" ' set the L...
by tvjunky
Sun Aug 21, 2005 1:17 pm
Forum: Need Help with Addons? (MMW4)
Topic: How do I get the 'AlbumArtist' property
Replies: 18
Views: 28359

I think the property you're looking for is indeed "AlbumArtistName" from an "SDBSongData" object. I'm unable to find it in webhelp , however you can verify the property's existence in the downloadable .chm file . To make your script work as intended (I just skimmed it) it is prob...