My hint for WinXP users, who don´t possess Calibri fonts: Install MS PowerPoint Viewer 2007 (freeware) and you will get automatically the Calibri fonts. http://www.microsoft.com/downloads/details.aspx?familyid=048DC840-14E1-467D-8DCA-19D2A8FD7485&displaylang=en
Therefore please change the Calibri fonts link. http://blogwindows.wordpress.com/2007/01/08/novo-vista-fonts/
This link doesn´t work anymore. Probably Microsft has stopped the transfer.
The problem is that “../” means nothing but “..\” is the correct way
Replace
$puts(artistPath,$replace(%path%,%filename_ext%,artist.*))
with
$puts(artistPath,$replace(%path%,%filename_ext%,..\artist.*))
Should work
At least, it works for me, on a structure Artist\Album\Songs.mp3
]]>My solution works by checking if the filenames defined by the filters (from first line to the last) are existing. It stops if one file is found.
Here’s the complete code for User Globals (only coverPath lines are relevant for this regard of course):
$puts(coverPath,$replace(%path%,%filename_ext%,folder.*))
$if($not($fileexists($get(coverPath))),$puts(coverPath,$replace(%path%,%filename_ext%,cover.*)))
$if($not($fileexists($get(coverPath))),$puts(coverPath,$replace(%path%,%filename_ext%,*front.jpg)))
$if($not($fileexists($get(coverPath))),$puts(coverPath,$replace(%path%,%filename_ext%,*front*.jpg)))
$if($not($fileexists($get(coverPath))),$puts(coverPath,$replace(%path%,%filename_ext%,*cover.jpg)))
$if($not($fileexists($get(coverPath))),$puts(coverPath,$replace(%path%,%filename_ext%,*cover*.jpg)))
$if($not($fileexists($get(coverPath))),$puts(coverPath,$replace(%path%,%filename_ext%,00*.jpg)))
$if($not($fileexists($get(coverPath))),$puts(coverPath,$replace(%path%,%filename_ext%,*%album%.jpg)))
$if($not($fileexists($get(coverPath))),$puts(coverPath,$replace(%path%,%filename_ext%,*%album%*.jpg)))
$if($not($fileexists($get(coverPath))),$puts(coverPath,$replace(%path%,%filename_ext%,*.jpg)))
$if($not($fileexists($get(coverPath))),$puts(coverPath,$replace(%path%,%filename_ext%,*.png)))
$if($not($fileexists($get(coverPath))),$puts(coverPath,$replace(%path%,%filename_ext%,*.bmp)))
$puts(artistPath,C:\Programme\foobar2000\artist_images\%artist%.*)
$puts(userFont,Tahoma)
$puts(userFontSize,9)
i can’t figure out how to use the Egoh Spectrum.
It won’t appear.
Can anyone help?
]]>