This is exactly what I was going to post about...
I did make changes that turned off both the highligh follow song and updating the album art if I had the visu turned on b/c on slower machines (M10k) and the visu covered either the art and/or the playlist it would do this, and it just makes it not look good when say playing a dj mix with 10 30sec tracks in a row.
@guino - I beleive that you could easly add/change this to how I described above, I added a visu varaible and when RR goes through the sceen update section, if the visu var is true/false then it allows/denies the update of those two things when updating. Work great on my setup. It just took some time to figure out where excactly the updating was occuring.
example, this is my visu code from my execTBL.ini
"RUNVISU","SETVAR;VISURUNNING;1||SETVAR;LISTFOLLOW SSONG;FALSE||SETVAR;UPDATEALBUMART;FALSE||VISU"
"STOPVISU","SETVAR;VISURUNNING;0||SETVAR;LISTFOLLO WSSONG;TRUE||SETVAR;UPDATEALBUMART;TRUE||AUDIO"
And this was the added/changed RR code
Code:
modRoadRunner - UpdateScreen (~line 3632)
'If Has next song ready, play that instead
If NextSong > -1 Then WinAMP_SetPlaylistPos NextSong: WinAMP_SendCommandMessage WA_PLAY: NextSong = -1
'If need to set new selection (follow option) - changed by Blue ZX3
If CBool(UseVars("listfollowssong")) And F.ShowPL Then
F.PL.Value = WinAMP_GetPlaylistPos
F.PL.CenterList
End If
'If need to set new selection (follow option) - changed by Blue ZX3
If CBool(UseVars("listfollowssong")) And F.ShowDL Then
'''
If F.DL.Path = Left(PlayList(WinAMP_GetPlaylistPos), Len(F.DL.Path)) Then
s = LCase(PlayList(WinAMP_GetPlaylistPos))
For t = 0 To F.DL.Max
If s = LCase(F.DL.Path + F.DL.GetItem(t)) Then
modRoadRunner - UpdateScreen (~line 3658)
'Get Current Song's ID3 Info (If not using ID3, it will cancel out by itself)
CurrentTAG = GetSongTitle(PlayList(WinAMP_GetPlaylistPos), True, "%artist%" + Chr(0) + "%album%" + _
Chr(0) + "%tracknumber%" + Chr(0) + "%genre%" + Chr(0) + "%year%" + Chr(0) + "%title%")
'Control albumart update upon screen update - Added by Blue ZX3
If Not CBool(UseVars("updatealbumart")) Then GoTo NoPic
'''
'Prepare Folder to look for Album art
Bookmarks