Hey pyro, this should remove the track volume and album volume tags (it will give you a menu option to do so within Media Monkey):
Save the code below as "Menu_UndoAnalyzeVolume.vbs" using Notepad and make sure the file path matches the one described in the comment header.
As shown, DiddleLeeDoo created this script (not me), but I added the part that removes the album volume.
'-------------------------------------------------------------------
' \Program Files\MediaMonkey\Scripts\Auto\Menu_UndoAnalyzeVolume.vbs
'
' Version: 1.01
' Date: 24 September 2006
' By DiddeLeeDoo
'-------------------------------------------------------------------
Sub OnStartup
Set Mnu=SDB.UI.AddMenuItem(SDB.UI.Menu_Tools,4,2)
Mnu.Caption=SDB.Localize("Undo Analyze Volume")
Mnu.IconIndex=39
Mnu.UseScript=Script.ScriptPath
Mnu.OnClickFunc="UndoVol"
End Sub
Sub UndoVol(o)
If SDB.SelectedSongList.Count>0 Then
Set dbT=SDB.SelectedSongList
Set Prg=SDB.Progress
Prg.MaxValue=dbT.Count-1
Prg.Text=SDB.Localize("Undoing Volume Analyzing...")
For i=0 To dbT.Count-1
Set Sng=dbT.Item(i)
Sng.Leveling=-999999
Sng.LevelingAlbum=-999999
Sng.UpdateDB
Sng.WriteTags
Prg.Value=i
If Prg.Terminate Then Exit For
Next
Set Prg=Nothing
Set dbT=Nothing
Else
SDB.MessageBox SDB.Localize("Please select the tracks to be processed"), mtError, Array(mbOk)
End If
End Sub