
Search found 46 matches
- Tue Apr 22, 2014 9:53 pm
- Forum: Need Help with Addons?
- Topic: StayInSameStyleDJ [MM3]
- Replies: 77
- Views: 39578
Re: StayInSameStyleDJ [MM3]
Well, since I am using it on 4.1, I would say yes. 

- Mon Jan 20, 2014 2:49 pm
- Forum: Need Help with Addons?
- Topic: Auto Set Equalizer to Current Song's Genre v3.1
- Replies: 32
- Views: 43124
Re: Auto Set Equalizer to Current Song's Genre v3.1
I don't know what it could be. The script doesn't write into the equalizer panel, so it shouldn't be doing that. It is simply pausing the track, changing the preset, and then hitting play to restart. This starts back at the beginning, but the script should be fast enough that the player didn't get f...
- Sun May 12, 2013 7:30 am
- Forum: Wishlist (mmw)
- Topic: Auto-DJ for genre?
- Replies: 9
- Views: 2073
Re: Auto-DJ for genre?
See http://www.mediamonkey.com/forum/viewto ... same+style
I wrote it several years ago, but it is still working. You can have it stay in the same genre, or same mood, and two dozen other options.
-Satin Knights
I wrote it several years ago, but it is still working. You can have it stay in the same genre, or same mood, and two dozen other options.
-Satin Knights
- Mon Dec 26, 2011 12:57 pm
- Forum: MediaMonkey 4 Addons developer forum
- Topic: How to signal I have nothing to return to GenerateNewTrack?
- Replies: 6
- Views: 1802
Re: How to signal I have nothing to return to GenerateNewTra
The key word there is "should". But there are corner cases where there the script cannot return a song and the main program needs to validate if it is receiving a song entry before trying to process it. A) Assume, the genre is only contains three songs. My script settings say play songs from the cur...
- Fri Dec 23, 2011 2:55 pm
- Forum: MediaMonkey 4 Addons developer forum
- Topic: How to signal I have nothing to return to GenerateNewTrack?
- Replies: 6
- Views: 1802
Re: How to signal I have nothing to return to GenerateNewTra
Well, as I was writing things up for a bug report, I was able to figure out a usable solution. case #1: Set GenerateNewTrack = Nothing fails with ""Invalid Variant Operation" when it did work in MM3. case #2: Set list = SDB.NewSongList Set GenerateNewTrack = list.Item(0) fails with "Read from 000000...
- Thu Dec 22, 2011 2:56 pm
- Forum: MediaMonkey 4 Addons developer forum
- Topic: How to signal I have nothing to return to GenerateNewTrack?
- Replies: 6
- Views: 1802
Re: How to signal I have nothing to return to GenerateNewTra
Well, MM3 worked fine. The script is StayInSameStyle AutoDJ, so it has been around for a long time. If Nothing was returned, the music stopped playing at the end of the current track. If the music stopped, it was because all the songs that fit the criteria of what the user wanted to listen to was pl...
- Tue Dec 20, 2011 1:19 pm
- Forum: MediaMonkey 4 Addons developer forum
- Topic: How to signal I have nothing to return to GenerateNewTrack?
- Replies: 6
- Views: 1802
How to signal I have nothing to return to GenerateNewTrack?
Hi. My autodj script is having a problem with MM4. How do I signal to GenerateNewTrack that I was not able to find a track to add to the NowPlaying list? In MM3 Set GenerateNewTrack = Nothing worked. Now, that gives a "Invalid Variant Operation" which I think is another term for variable type mismat...
- Wed Mar 02, 2011 2:36 pm
- Forum: Need Help with Addons?
- Topic: MusicIP Tagger 2.0 - Updated 28/07/2012
- Replies: 503
- Views: 230694
Re: MusicIP Tagger 1.8 - Updated 24/02/2011
It was a code snippet I was giving back to trixmoto so he could incorporate it into his next release. If you want to modify your own copy right now, here is the explanation. There are two blocks being modified. Line 685 is where the first block starts, with the "rel =" line. The additions are going ...
- Tue Mar 01, 2011 4:24 pm
- Forum: Need Help with Addons?
- Topic: MusicIP Tagger 2.0 - Updated 28/07/2012
- Replies: 503
- Views: 230694
Re: MusicIP Tagger 1.8 - Updated 24/02/2011
I am reinstalling my machine, and I hit the same "No results found" problem. Since I can do a bit of VBS tweaking, I went looking. It turns out the system was saying "path not found" for something. With blind twiddling, I was able to find it. Backup the file first. Then edit MusicIPTagger.vbs at lin...
- Wed Jul 07, 2010 8:37 pm
- Forum: Need Help with Addons?
- Topic: "Play Random Album" command?
- Replies: 8
- Views: 4292
Re: "Play Random Album" command?
A while back I wrote http://www.mediamonkey.com/forum/viewtopic.php?f=2&t=24073 StayInSameStyleDJ . It has 95% of what you are looking for. The script chooses the next song based upon the Genre/Occasion/Tempo and/or Mood of the current song playing, depending on which options you pick. For your want...
- Sat Dec 26, 2009 1:10 am
- Forum: Need Help with Addons?
- Topic: StayInSameStyleDJ [MM3]
- Replies: 77
- Views: 39578
Re: StayInSameStyleDJ [MM3]
The overall answer is no. I work with the full genre entry. So, if you chose as your first song "blues;bluesrock", that will be the default search. If it is not finding an eligible song, it will fall back to searching for "blues", and then "bluesrock". But, on the next song, it will go back to the "...
- Mon Dec 21, 2009 3:54 pm
- Forum: Need Help with Addons?
- Topic: StayInSameStyleDJ [MM3]
- Replies: 77
- Views: 39578
Re: StayInSameStyleDJ [MM3]
No problem.
-Satin Knights
-Satin Knights
- Mon Dec 21, 2009 2:11 pm
- Forum: Need Help with Addons?
- Topic: StayInSameStyleDJ [MM3]
- Replies: 77
- Views: 39578
Re: StayInSameStyleDJ [MM3]
DbLoop 1: queryStr= WHERE Songs.Rating <> 0 AND Songs.ID IN (SELECT IDSong FROM GenresSongs WHERE GenresSongs.IDGenre IN ( SELECT Genres.IDGenre FROM Genres WHERE Genres.IDGenre in (3,5,7,9,10,11,12,47,4,2,8,13))) AND Songs.PlayCounter>=5 AND (Songs.PlayCounter>=0 and Songs.PlayCounter<=9) AND NOT ...
- Mon Dec 21, 2009 11:32 am
- Forum: Need Help with Addons?
- Topic: StayInSameStyleDJ [MM3]
- Replies: 77
- Views: 39578
Re: StayInSameStyleDJ [MM3]
Here's my mediamonkey.ini info: [StayInSameStyle] CommercialA=0 <=== This says that Commerial A is turned off. CommercialB=0 <=== And Commercial B is also off CommercialASkip=1 <=== Skip Commercial restrictions on, good CommercialBSkip=0 CommercialASongs=5 <=== how many songs to wait CommercialBSon...
- Sun Dec 20, 2009 9:27 pm
- Forum: Need Help with Addons?
- Topic: StayInSameStyleDJ [MM3]
- Replies: 77
- Views: 39578
Re: StayInSameStyleDJ [MM3]
Ok. Here are a few things to try. 1) Check the "Ignore Restrictions" next to the Christmas commercials. Otherwise, it will look for Christmas songs that are 3 stars or better. 2) Check the Extra debugging. Then read $TEMP\StayInSameStyle-Trace.log. You should see something like ... CMP: Album 149: L...