PT wrote:Scott
One other little query how do I change the winamp sample download to display albums etc in lieu (or as wel) of artist. Can it be made to display album art?
Thanks
In this post is what I came up with.
PT wrote:Scott
One other little query how do I change the winamp sample download to display albums etc in lieu (or as wel) of artist. Can it be made to display album art?
Thanks
Code: Select all
Dim strPlaySrc
Dim strPath
Dim intPos
strPlaySrc = GetPropertyValue("WinAmpController.Play Source")
'Get path from song
' D:\Music\Prince\Androgynous\14-7.mp3
intPos = InstrRev(strPlaySrc, "\")
strPath = "C:\Program Files\Meedio\Meedio HouseBot\Config\Scripts\folder.jpg"
If intPos > 0 Then
strPath = Trim(Left(strPlaySrc, intPos)) & "folder.jpg"
End If
SetPropertyValue "WinAmpController.Album Art", Trim(strpath)
PT,PT wrote:I had asked previoulsyin the forum whether if it was possible to change the method of looking for music.Genre album or whole album ( would it be possible to have a button activated script which then played one level up from song chosen from album ie it then played the whole album. I know you can do this from command line but this is a little messy when using touchpanels. Your thoughts?
Once again thanks for the help so far