Well the first download link is to a .zip file, not an .mmip file. Inside it are 2 .ini files and a .vbs file. The second link is broken, so is there any other instructions for installing?
Thx

You're probably on Internet Explorer. Rename the extension back from .zip to .mmip and then you can double click to install.random7 wrote:Well the first download link is to a .zip file, not an .mmip file.

Eric Genname wrote:If I select the Play option Silence between songs, MM4 skips every other track. MM3 did not have this problem.
If GapProgress.Value = 0 Then
SDB.Player.Next
End If'If GapProgress.Value = 0 Then
' SDB.Player.Next
'End IfGingernut63 wrote:I also have the same problem. I am using MediaMonkey Gold 4.0.0.1412 beta and Silence Between Songs v.3.0. Options not selected. Note: Crossfade and Auto Crossfade deselected.
Error #424 - Microsoft VBScript runtime error
Object required: 'GapProgress'
File: "C:\Program Files (x86)\MediaMonkey\Scripts\Auto\SilenceBetweenSongs.vbs" Line: 160, Column: 6
The error appeared when one track finished and the second tried to start. The play then skipped to the third track, totally bypassing the second. The error appeared once, the 2nd track skipped evertime I repeated the play sequence above. With Silence Between Songs (SBS) deselected in Play the 2nd track played every time. Restarting MediaMonkey and re-selecting SBS, I could replicated the skipping of the 2nd track but not Error #424.
For the record (Ha Ha Ha - joke for the older people on the forum) the pieces of music came from Julia Fischer - Poème, Track sequence: 1 Respighi - Poema autunnale, 2 Vaughan Williams - The Lark Ascending, 3 Suk - Fantasy (all Flac)
Gingernut63
P.S. Sorry for the attempt at humour
'---------------------
Sub GapOnTimer(Timer)
If GapProgress.Value = 0 Then
SDB.Player.Next
End If
If GapTimer.Enabled = True Then
GapProgress.Increase
GapProgress.Text="Gap " & SilenceTime - GapProgress.Value & " seconds."
End If
If GapProgress.Value >= GapProgress.MaxValue Then
'If Repeat is ON, continue playing:
If SDB.Player.IsRepeat Then
SDB.Player.Play
Else
'Continue playing if Shuffle has not played all files:
If CurrentTrack <> SDB.Player.CurrentSongIndex Then
SDB.Player.Play
End If
End If
GapTimer.Enabled = False
Set GapProgress = Nothing
End If
End Sub
'---------------------
Sub GapOnTimer(Timer)
If GapProgress.Value = 0 Then
SDB.Player.Next
End If
If GapTimer.Enabled = True Then
'---ADDED LINE BELOW---
If GapProgress Is Nothing Then Set GapProgress.Value = 0 'Sometimes gapProgress = nothing and that crashes script.
'-----------------------------
GapProgress.Increase
GapProgress.Text="Gap " & SilenceTime - GapProgress.Value & " seconds."
End If
If GapProgress.Value >= GapProgress.MaxValue Then
'If Repeat is ON, continue playing:
If SDB.Player.IsRepeat Then
SDB.Player.Play
Else
'Continue playing if Shuffle has not played all files:
If CurrentTrack <> SDB.Player.CurrentSongIndex Then
SDB.Player.Play
End If
End If
GapTimer.Enabled = False
Set GapProgress = Nothing
End If
End Sub
Sub GapOnTimer(Timer)
If GapProgress Is Nothing then Set GapProgress.Value = 0 'Sometimes gapProgress = nothing and that crashes script.
armando wrote:Sorry make it the first line of the script instead -- copied the wrong version :Sub GapOnTimer(Timer)
If GapProgress Is Nothing then Set GapProgress.Value = 0 'Sometimes gapProgress = nothing and that crashes script.
but some abuse the privilegeOnno@heuveltop.nl wrote:I have updated the MMIP file.
Users browsing this forum: No registered users and 11 guests