by Ben Tyndall » Thu Feb 09, 2012 9:05 am
Eric Genname wrote:If I select the Play option Silence between songs, MM4 skips every other track. MM3 did not have this problem.
The solution to this is in the post immediately preceding yours.
(1) Go to the \MediaMonkey\scripts\auto\ directory where MediaMonkey is installed, and open the file, SilenceBetweenSongs.vbs with a text editor (preferably an editor that is "vbs aware", although Notepad will do).
(2) find the routine, "Sub GapOnTimer(Timer)"
(3) Comment out (or delete) the first three lines of the routine:
- Code: Select all
If GapProgress.Value = 0 Then
SDB.Player.Next
End If
by placing a single quote quote as the first character in each line, like so
- Code: Select all
'If GapProgress.Value = 0 Then
' SDB.Player.Next
'End If
(4) restart MediaMonkey
[quote="Eric Genname"]If I select the Play option Silence between songs, MM4 skips every other track. MM3 did not have this problem.[/quote]
The solution to this is in the post immediately preceding yours.
(1) Go to the \MediaMonkey\scripts\auto\ directory where MediaMonkey is installed, and open the file, SilenceBetweenSongs.vbs with a text editor (preferably an editor that is "vbs aware", although Notepad will do).
(2) find the routine, "Sub GapOnTimer(Timer)"
(3) Comment out (or delete) the first three lines of the routine:
[code]If GapProgress.Value = 0 Then
SDB.Player.Next
End If[/code]
by placing a single quote quote as the first character in each line, like so
[code]'If GapProgress.Value = 0 Then
' SDB.Player.Next
'End If[/code]
(4) restart MediaMonkey