Today I found the problem. I removed the AutoPlaylist.vbs script from the \Program Files\MediaMonkey\Scripts\Auto folder and BOOM - MM starts instantly!
What a relief!!
I'm not much good with scripting so I don't know what is wrong with the script. Here it is:
Code: Select all
Sub OnStartup
Dim Songs, playlist
' Use this to Change Which playlist you wish to play on startup.
' Enter name of playlist you wanna play on next MM startup
Playlist = "quiet"
Sdb.player.playlistclear
Sdb.player.currentSongIndex = 0
sdb.player.Play
sdb.player.playlistaddtracks(SDB.PlaylistByTitle(Playlist).tracks)
Sdb.player.currentSongIndex = 0
' When MediaMonkey is starting playing of desired playlist.
' if you want that MediaMonkey do not start playing automaticaly add "'" in front of next line
sdb.player.Play
If Sdb.player.currentSongIndex > 0 Then
sdb.player.Stop
Sdb.player.currentSongIndex = 0
end if
End SubWhat a great program MM is though. Sure makes MS WMP 11 look like a toy! I'm really looking forward to the next release.
Thanks!