QUOTE(foobar2000 @ Oct 8 2008, 19:30)

How to add image sources,for example,cover.bmp,cover.png,cover.gif?
thanks
rigth-click on ELPlaylist, enter Settings, and at the beginning of the script, modify the Path used for covers (in blue) :
$if($findfile(
$replace(%path%,%filename_ext%,folder.jpg)),
$puts(cover.path,
$directory_path(%path%)/folder.jpg)
,
$puts(cover.path,./images/ibiza/cover/nocover.png)
)
this default code display pics named folder.jpg located in the music folder.
wildcard are not admit (* or ? characters) so you can only add multiple named files by stacking them like this (replace the 5 lines above by these) :
$if($findfile($replace(%path%,%filename_ext%,cover.jpg)),
$puts(cover.path,$directory_path(%path%)/cover.jpg)
,
$if($findfile($replace(%path%,%filename_ext%,cover.bmp)),
$puts(cover.path,$directory_path(%path%)/cover.bmp)
,
$if($findfile($replace(%path%,%filename_ext%,cover.gif)),
$puts(cover.path,$directory_path(%path%)/cover.gif)
,
$puts(cover.path,./images/ibiza/cover/nocover.png)
)
)
)
=>it look for cover.jpg, if not found, it looks for cover.bmp, if not found too, it looks for cover.gif ... if not found then it will use the nocover.png picture
you got it ?
QUOTE(London Mike @ Oct 8 2008, 19:47)

QUOTE(Falstaff @ Oct 8 2008, 18:00)

so, you are very lazy today no ?? ok ok , here are the paths you have to used for your foobar :
$puts(cover.path,$replace(%path%,%filename_ext%,)folder.jpg)
$puts(artist.path,$replace(%path%,%filename_ext%,)artist.jpg)

No, that makes EL Playlist go blank too
And no, not lazy, just right at the edge of my coding ability

it works fine, just tested it !! you are doing something wrong or the artist.jpg image is not in the same folder that your music file, check this please.
good luck