Help - Search - Members - Calendar
Full Version: IBIZA by Br3tt
Hydrogenaudio Forums > Hosted Forums > foobar2000 > 3rd Party Plugins - (fb2k)
Pages: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21
Van.quish
hello Br3tt!
first thing first! man Ibiza is just OMG great! wonderful!
but i have some issues with covers...

i have most of them in my specified folder on hd (G:\foo\covers\%artist% - %album%.jpg)
some are in albums folders like folder.jpg and those are working...

i've tried to solve this by myself but i can't make it working!


CODE
$if($findfile($replace(%path%,%filename_ext%,folder.jpg)),
    $puts(cover.path,$directory_path(%path%)/folder.jpg)
,
    $puts(cover.path,./images/ibiza/cover/nocover.png)
                
    $puts(cover.path,'G:\foo\covers\'%artist%' - '%album%'.jpg')
)


this is from playlist and works fine! both!

the problem is here:

CODE
$draw_image(25,48,$eval(%gb_width%-41),$eval(%gb_width%-41),'./images/ibiza/cover/nocover.png',255,nokeepaspect)
$draw_image(25,48,$eval(%gb_width%-41),$eval(%gb_width%-41),$replace(%path%,%filename_ext%,folder.jpg),255,nokeepaspect)


and here:

CODE
$puts(cover.path,$directory_path(%path%)/folder.jpg)
$puts(artist.path,'G:\foo\artist\'%artist%'.jpg')



i don't know how and where i have to put my covers path...
i've tried to make it like in playlist but it doesn't work...

please help me

regards
big_bum
QUOTE(big_bum @ Aug 19 2008, 17:20) *

Hello all and hello Br3tt, I am new on this forum and I hope someone could help me.

I have a problem with Ibiza 1.5a with the pop-up in playlist panel: it dosen't show the pop-up at all. In the older version (1.4a) there was no problem with it.
Popup tabs from style are empty, and I think that's the problem, but i'm not sure smile.gif

Help me please!



No one knows?

Fixed. Mouse hover was disabled biggrin.gif
Falstaff
QUOTE(London Mike @ Aug 18 2008, 23:56) *

Br3tt, I hope this is ok? Tell me if it isn't and I'll delete it smile.gif

...




it's ok, everybody can mod Ibiza as he want
bubi jackson
QUOTE(Falstaff @ Jul 7 2008, 06:54) *


you give the answer : your CPU is too old and does not support some instructions set (SSE, SSE2 or something else...)

stay with v1.3 of IBIZA or change your MC+CPU


I can't believe it - I have to by a better CPU to use a Foobar plugin. blink.gif

What a bummer - Ibiza looks so fine. sad.gif


Falstaff
QUOTE(bubi jackson @ Aug 21 2008, 10:26) *

QUOTE(Falstaff @ Jul 7 2008, 06:54) *


you give the answer : your CPU is too old and does not support some instructions set (SSE, SSE2 or something else...)

stay with v1.3 of IBIZA or change your MC+CPU


I can't believe it - I have to by a better CPU to use a Foobar plugin. blink.gif

What a bummer - Ibiza looks so fine. sad.gif


like i said => Ibiza v1.3 should work, the link is given on 1st post to download it
bubi jackson
Thx, I know and I've already installed 1.3, but it doesn't work for me.

I don't see anything in the playlist, and it's too complicated for me (foobar since one week) to check and customize all the settings. sad.gif
akispavlopoulos
to see the playlist just install an earlier version of EL playlist.(the on with beta in its name is I remember well)
bubi jackson
Oh, I tried to find an older Version <0.42 for an hour, but I'm too stupid to find one.

But never mind, I think now, it's better for me noob to learn the basics of cui and all the stuff.

Thx
Van.quish
hello...
can someone help me here? omg please... sad.gif
Hawk
Van.quish under this code:

$puts(cover.path,$directory_path(%path%)/folder.jpg)

You need to paste this code

$puts(cover.path,$directory_path(%path%)/album.jpg)

In the end it will look like this:

$puts(cover.path,$directory_path(%path%)/folder.jpg)
$puts(cover.path,$directory_path(%path%)/album.jpg)

But the better solution is to name *all* you album covers as:

folder.jpg

Then it will always work.
Van.quish
QUOTE(Hawk @ Aug 21 2008, 15:25) *

Van.quish under this code:

$puts(cover.path,$directory_path(%path%)/folder.jpg)

You need to paste this code

$puts(cover.path,$directory_path(%path%)/album.jpg)

In the end it will look like this:

$puts(cover.path,$directory_path(%path%)/folder.jpg)
$puts(cover.path,$directory_path(%path%)/album.jpg)

But the better solution is to name *all* you album covers as:

folder.jpg

Then it will always work.

well thanks for help but in my case it won't be a solution.
as i wrote most of my covers are on hard drive in one folder:

CODE
G:\foo\covers\%artist% - %album%.jpg


some are in albums folders...

and i can't make it work together...
OutSky
Hello, Falstaff.

Thanks for great skin))
I love it)

Does Anybody know how to make AlbumList to sort the marked tracks in PlayList?

I don't know how to do((((


I have a little bit modified and optimized it to my PC)

My Foobar

Falstaff
QUOTE(Van.quish @ Aug 20 2008, 11:16) *

hello Br3tt!
first thing first! man Ibiza is just OMG great! wonderful!
but i have some issues with covers...

i have most of them in my specified folder on hd (G:\foo\covers\%artist% - %album%.jpg)
some are in albums folders like folder.jpg and those are working...

i've tried to solve this by myself but i can't make it working!


CODE
$if($findfile($replace(%path%,%filename_ext%,folder.jpg)),
    $puts(cover.path,$directory_path(%path%)/folder.jpg)
,
    $puts(cover.path,./images/ibiza/cover/nocover.png)
                
    $puts(cover.path,'G:\foo\covers\'%artist%' - '%album%'.jpg')
)


this is from playlist and works fine! both!

the problem is here:

CODE
$draw_image(25,48,$eval(%gb_width%-41),$eval(%gb_width%-41),'./images/ibiza/cover/nocover.png',255,nokeepaspect)
$draw_image(25,48,$eval(%gb_width%-41),$eval(%gb_width%-41),$replace(%path%,%filename_ext%,folder.jpg),255,nokeepaspect)


and here:

CODE
$puts(cover.path,$directory_path(%path%)/folder.jpg)
$puts(artist.path,'G:\foo\artist\'%artist%'.jpg')



i don't know how and where i have to put my covers path...
i've tried to make it like in playlist but it doesn't work...

please help me

regards


here is what to code :

1) in Playlist :

CODE
$if($findfile([color=#3366FF]'G:\foo\covers\'%artist%' - '%album%'.jpg'[/color]),
    $puts(cover.path,[color=#3366FF]'G:\foo\covers\'%artist%' - '%album%'.jpg'[/color])
,
    $puts(cover.path,./images/ibiza/cover/nocover.png)            
)


2) in Graphical Browser - Album display

CODE
$draw_image(25,48,$eval(%gb_width%-41),$eval(%gb_width%-41),'./images/ibiza/cover/nocover.png',255,nokeepaspect)
$draw_image(25,48,$eval(%gb_width%-41),$eval(%gb_width%-41),[color=#3366FF]'G:\foo\covers\'%artist%' - '%album%'.jpg'[/color],255,nokeepaspect)


3) in Panel Stack Splitter that display CD Case + Artist Photo :

CODE
$puts(cover.path,[color=#3366FF]'G:\foo\covers\'%artist%' - '%album%'.jpg'[/color])
$puts(artist.path,'G:\foo\artist\'%artist%'.jpg')


Viperb0y
Hi,

QUOTE(Falstaff @ Aug 19 2008, 19:29) *

QUOTE(Viperb0y @ Aug 19 2008, 18:51) *

Hi,

the playcount thing doesn't work.. everything else is fine! (Except i miss one font).

Could somebody tell me why? Every number behind the song names is "0"


you need a component (.dll) that handle the playcounter ! => playcount_mod.dll is the one i use, it write the playcount info directly in the mp3 file.


maybe you should update your "components" list and add playcount_mod.dll?
daniel99_de
Hi,

I tried to install version 1.3 of IBIZA. But I can't see something at the playlist beside the stars and I definitely have all fonts installed.

IPB Image

Please, could someone tell me why I am missing the title, artist, etc. stuff.


thanks
daniel

Edit: I Forget to mention that I have foobar2000 version 0.9.5.5 at windows xp and downloaded the newest components today.
London Mike
Looks like you need to change the font colour from black to white
NeoSno
i got everything setup and i couldnt find the 3 font's but found out i didnt really need them o.0 since almost everything is working perfectly fine =D i'm loving the skin entire but i have came upon 1 problem IPB Image
everytime it switches over to a new song that isnt more then 20 seconds or if i skip to a next song it give's me that error was wondering if anyone has the fix for this? im guessing its because of the font's but im not sure D:

edit: just checked and apprently it does this after almost EVERY song even if its more then 20 seconds :/ im puzzled on what could cause this
Falstaff
QUOTE(daniel99_de @ Aug 22 2008, 20:02) *

Hi,

I tried to install version 1.3 of IBIZA. But I can't see something at the playlist beside the stars and I definitely have all fonts installed.

IPB Image

Please, could someone tell me why I am missing the title, artist, etc. stuff.


thanks
daniel

Edit: I Forget to mention that I have foobar2000 version 0.9.5.5 at windows xp and downloaded the newest components today.


v1.3 is not compatible with lastest versions of ELPlaylist, try to get an old version of ELPlaylist or modify the code in ELPlaylist ... all vars like %_width%, %isplaying% ... etc are no more accepted in lastest versions of ELP, so change them to %el_width%, %el_isplaying%, %el_height% ...etc) just read the text file attach with ELPlaylist dll
daniel99_de
Haha LondonMike,

the font color is definitely not my problem.
There are several problems at the version i downloaded today. Some colors are define like 000-000-000-000, so i have to change them to 000-000-000.
There are also two variables %_width% and %_heigth%. When I change them to static values like 200 and 15 the problems are gone. So is this a bug at the ELPlaylist or is there a way to define them right.

Thanks
daniel

Edit: Sorry Falstaff, I read your Post too late. So I hope my problem is solved.
Van.quish
thank you Br3tt for your help it works perfect now smile.gif
very good looking foo now smile.gif

keep on rockin' man.
daniel99_de
Hi again,
everything is working fine now. Thanks for your help.

But I still got a question. Could please post someone the style settings for the Playlist from version 1.5. Especially the track-list settings would be great. Because of the WSH Panel I am not able to start the new version.

Thanks again
daniel
Van.quish
omg i dunno why but i doesn't work now!
the problem is in cd case and artist panel
now it displays only covers from my directory, covers from albums folders (folder.jpg) are not displayed.

it looks like that:
CODE
$if($findfile($replace(%path%,%filename_ext%,folder.jpg)),
                $puts(cover.path,$directory_path(%path%)/folder.jpg)
                $puts(cover.path,'G:\foo\covers\'%artist%' - '%album%'.jpg'),
                $puts(cover.path,./images/ibiza/cover/nocover.png)
)

Br3tt please what i have to change there?
bubi jackson
Hi,

I'm so proud, I made it to configure the wonderful Ibiza 1.3 by reading some hours here in the forum. smile.gif

But there are still two questions:

1. I need the command for the Explorer Tree Panel, please, cause I want to change it with the Album List Panel on the right splitter button.

2. Could someone tell me how to put the peakmeter in the track info panel like in the picture, please. I'm too frightened to destroy my config, if I do it on my own.

IPB Image

thx in advance
Viggen
Hello,

Not sure if its right section, but since album art is default foo component im posting here...

Moderation: the core album art functions have nothing to do with your issues. Moved your post into this thread.


im using IBIZA by Br3tt, but dotn think it has anything to do with it...

I got question about 2 alternative sources for artist photo

1st situation:
http://i157.photobucket.com/albums/t51/lor...n/Clip_23-1.jpg
I got original album - just one artist - (want to use artist.jpg inside folder with audio file
- why ? on different albums band members might have change, so i can use different pics for same artist)
so i use this:
$puts(artist.path,$directory_path(%path%)/artist.jpg)

2nd situation:
http://i157.photobucket.com/albums/t51/lor...n/Clip_22-1.jpg
I got compilation album, with various artists and want to use "default" artist pic
so i use this:
$puts(artist.path,'D:\mp3\images\'%artist%'.jpg') (relative path just for me)


Now i want to merge both solutions, and not sure if its possible:

IF program finds file artist.jpg inside album directory use it
else
use default artist image from D:\mp3\images\


this code should do this, but It's not tongue.gif - Did I miss something ?
CODE
$if
(
    $findfile
    (    $replace
        (
            %path%,%filename_ext%,artist.jpg
        )
    )
    ,
            $puts(artist.path,$directory_path(%path%)/artist.jpg)
    ,
            $puts(artist.path,'D:\mp3\images\'%artist%'.jpg')
)

it always loads $puts(artist.path,$directory_path(%path%)/artist.jpg)
, never goes for $puts(artist.path,'D:\mp3\images\'%artist%'.jpg')

can i get some support with this?
Viggen
QUOTE(RevivalofHonor @ Aug 9 2008, 08:28) *


There might be a bug with $findfile() in the panel splitter.
You could always check if the artist is equal to the album artist, and work from that
CODE

$if
(
    $strcmp(%album artist%,%artist%)
    , $puts(artist.path,$directory_path(%path%)/artist.jpg)
    , $puts(artist.path,'D:\mp3\images\'%artist%'.jpg)
)



I didnt notice your reply
anyway... seems your solution is not working, after adding this instead of my code panel gets empty,any other ideas?
chiwou
I want to ask, if you could share your EL Playlist config separately from the Columns config

because columns ui wants the needed components to load the IBIZA theme but when I add WSH something foobar crash all the time

so it would be great if you share your configs separately

-chiwou
artaphile
I really like this UI but I'm having an issue with my ID3 tags. For some reason every mp3 I play without an ID3v2 tag gets updated without my consent. This doesn't happen when I'm using the default UI. Is there any way to prevent that while using this one? I'm not sure which component is doing it...

Any help would be much appreciated!

Thanks
Falstaff
QUOTE(chiwou @ Aug 25 2008, 01:26) *

I want to ask, if you could share your EL Playlist config separately from the Columns config

because columns ui wants the needed components to load the IBIZA theme but when I add WSH something foobar crash all the time

so it would be great if you share your configs separately

-chiwou


i'll try this evening.

QUOTE(artaphile @ Aug 25 2008, 06:42) *

I really like this UI but I'm having an issue with my ID3 tags. For some reason every mp3 I play without an ID3v2 tag gets updated without my consent. This doesn't happen when I'm using the default UI. Is there any way to prevent that while using this one? I'm not sure which component is doing it...

Any help would be much appreciated!

Thanks


i think that's Lyrics Show Panel, go to preferences-->Tools--> Lyrics Show Panel --> last TAB = Internet =>
put 'Save Scheme to 'Don't Save' to fix this file update not wanted

QUOTE(Viggen @ Aug 25 2008, 00:29) *

QUOTE(RevivalofHonor @ Aug 9 2008, 08:28) *


There might be a bug with $findfile() in the panel splitter.
You could always check if the artist is equal to the album artist, and work from that
CODE

$if
(
    $strcmp(%album artist%,%artist%)
    , $puts(artist.path,$directory_path(%path%)/artist.jpg)
    , $puts(artist.path,'D:\mp3\images\'%artist%'.jpg)
)



I didnt notice your reply
anyway... seems your solution is not working, after adding this instead of my code panel gets empty,any other ideas?


i'll see that this evening if i have time
artaphile
QUOTE(Falstaff @ Aug 25 2008, 00:08) *

i think that's Lyrics Show Panel, go to preferences-->Tools--> Lyrics Show Panel --> last TAB = Internet =>
put 'Save Scheme to 'Don't Save' to fix this file update not wanted


That was it, thanks!
Van.quish
Br3tt please can you check this:
CODE
$if($findfile($replace(%path%,%filename_ext%,folder.jpg)),
                $puts(cover.path,$directory_path(%path%)/folder.jpg)
                $puts(cover.path,'G:\foo\covers\'%artist%' - '%album%'.jpg'),
                $puts(cover.path,./images/ibiza/cover/nocover.png)
)


it is from cd case and artist image and it works only for my covers path (form hard disk) folder.jpg doesn't works sad.gif

Arte
i tried the skin and it looks really good, the only thing that troubles me is that my library looks like this.
IPB Image
i mean i sorted them by album but even if they are from the same album it sorts them by the artist. and it's really a pain when every song takes a spot in the album window @_@
Falstaff
QUOTE(Arte @ Aug 25 2008, 22:30) *

i tried the skin and it looks really good, the only thing that troubles me is that my library looks like this.
IPB Image
i mean i sorted them by album but even if they are from the same album it sorts them by the artist. and it's really a pain when every song takes a spot in the album window @_@


your are off topic here... no link with Ibiza Config but here is the reason (i think) :

for various artists in an album, you have to use the TAG %album artist% !

%album artist% contains the artist name for the whole album and in this case it is often set to 'Various Artists' value

try to set this Tag for each various artists album you have to fix the pb.
nzbm
I installed all the component but:
IPB Image
and
IPB Image

Falstaff
QUOTE(nzbm @ Aug 26 2008, 10:11) *

I installed all the component but:
IPB Image
and
IPB Image


chrowflow problem, have you a recent and a stand alone video card 3d ? if yes, install the lastest drivers for it.

if pb always the same, expose your pb in chronflow topic.

QUOTE(Van.quish @ Aug 25 2008, 15:22) *

Br3tt please can you check this:
CODE
$if($findfile($replace(%path%,%filename_ext%,folder.jpg)),
                $puts(cover.path,$directory_path(%path%)/folder.jpg)
                $puts(cover.path,'G:\foo\covers\'%artist%' - '%album%'.jpg'),
                $puts(cover.path,./images/ibiza/cover/nocover.png)
)


it is from cd case and artist image and it works only for my covers path (form hard disk) folder.jpg doesn't works sad.gif


you could make an effort, it not very complicated dry.gif you just have to duplicate lines in order to handle the 2 paths you have !

SO : $puts(cover.path,$directory_path(%path%)/folder.jpg)

1) in Playlist :

CODE

$if($findfile([color=#3366FF]'G:\foo\covers\'%artist%' - '%album%'.jpg'[/color]),
    $puts(cover.path,[color=#3366FF]'G:\foo\covers\'%artist%' - '%album%'.jpg'[/color])
,
    $if($findfile([color=#3366FF]$directory_path(%path%)/folder.jpg[/color]),
        $puts(cover.path,[color=#3366FF]$directory_path(%path%)/folder.jpg[/color])
    ,
        $puts(cover.path,./images/ibiza/cover/nocover.png)
    )
)


2) in Graphical Browser - Album display

CODE

$draw_image(25,48,$eval(%gb_width%-41),$eval(%gb_width%-41),'./images/ibiza/cover/nocover.png',255,nokeepaspect)
$draw_image(25,48,$eval(%gb_width%-41),$eval(%gb_width%-41),[color=#3366FF]'G:\foo\covers\'%artist%' - '%album%'.jpg'[/color],255,nokeepaspect)
$draw_image(25,48,$eval(%gb_width%-41),$eval(%gb_width%-41),[color=#3366FF]$directory_path(%path%)/folder.jpg[/color],255,nokeepaspect)


3) in Panel Stack Splitter that display CD Case + Artist Photo :

CODE

$puts(cover.path,[color=#3366FF]'G:\foo\covers\'%artist%' - '%album%'.jpg'[/color])
$puts(cover.path,[color=#3366FF]$directory_path(%path%)/folder.jpg[/color])
$puts(artist.path,'G:\foo\artist\'%artist%'.jpg')


that should work

QUOTE(chiwou @ Aug 25 2008, 01:26) *

I want to ask, if you could share your EL Playlist config separately from the Columns config

because columns ui wants the needed components to load the IBIZA theme but when I add WSH something foobar crash all the time

so it would be great if you share your configs separately

-chiwou


done :

http://rapidshare.com/files/140207708/ELPl...A_1.5a.elp.html
Viggen
wow finally, altering code from your last post got me what i wanted, TYVM.

in CD+Artist panel
CODE

$if($findfile($replace(%path%,%filename_ext%,artist.jpg)),
                $puts(artist.path,$directory_path(%path%)/artist.jpg)
                $puts(artist.path,'D:\mp3\images\'%artist%'.jpg'),
                $puts(artist.path,./images/ibiza/cover/noartist.png)
)


works perfectly for various artists albums

edit:

actually its not working ^^ just noticed it only shows the $puts(artist.path,'D:\mp3\images\'%artist%'.jpg') pic....

this one also not working, its only loading 1st one
CODE

$if($findfile($directory_path(%path%)/artist.jpg),
$puts(artist.path,$directory_path(%path%)/artist.jpg)
,
$if($findfile('D:\mp3\images\'%artist%'.jpg'),
$puts(artist.path,'D:\mp3\images\'%artist%'.jpg')
)
)



weird thing is, if i delete "noartist.png" row, it loads it anyway, where is it defined for splitter?
Van.quish
CODE
3) in Panel Stack Splitter that display CD Case + Artist Photo :

CODE

$puts(cover.path,[color=#3366FF]'G:\foo\covers\'%artist%' - '%album%'.jpg'[/color])
$puts(cover.path,[color=#3366FF]$directory_path(%path%)/folder.jpg[/color])
$puts(artist.path,'G:\foo\artist\'%artist%'.jpg')


that should work

hmm this one displays only covers from folder.jpg

i've tried to copy and some modifications but without any good results...
so please help me once again...

regards
chiwou
QUOTE(Falstaff @ Aug 26 2008, 12:12) *

QUOTE(chiwou @ Aug 25 2008, 01:26) *

I want to ask, if you could share your EL Playlist config separately from the Columns config

because columns ui wants the needed components to load the IBIZA theme but when I add WSH something foobar crash all the time

so it would be great if you share your configs separately

-chiwou


done :

http://rapidshare.com/files/140207708/ELPl...A_1.5a.elp.html

thank you very much biggrin.gif
Nitrius
Edit: Nvm, got it working. Great work btw =)
fusen
nice theme, is there any way to have it scan the folder for any images instead of having to hardcode the image name (like folder.jpg)
Andu
Shouldn't that be possible with an asterisk? *.jpg?
JFK
First, thank you Falstaff for sharing this really nice setup with us!

QUOTE(Andu @ Aug 27 2008, 18:53) *

Shouldn't that be possible with an asterisk? *.jpg?


Interested in that one too! How do you manage this ?
tOo.
QUOTE(Andu @ Aug 27 2008, 19:53) *

Shouldn't that be possible with an asterisk? *.jpg?

Just found the answer, but you need to write it up yourself in the existing codes (relax, it's not so hard wink.gif) :

1/ Enter in the setting of the playlist, in the really first tab (style/tracklist) replace the 4th and the 5th lines by :
CODE
$if($replace(%path%,%filename_ext%,*.jpg),
    $puts(cover.path,$findfile($replace(%path%,%filename_ext%,*.jpg)))


2/ Open the left panel and activate the album section (with the polaroids diaporama) and enter settings, then scroll around the middle of the page and look for this line (2 lines under a compact paragraph) :
CODE
$draw_image(25,48,$eval(%gb_width%-41),$eval(%gb_width%-41),$replace(%path%,%filename_ext%,folder.jpg),255,nokeepaspect)

simply replace the word "folder" into a " * " symbol


3/Finished ! Yeah i'm sorry but I don't found any way to make Chronflow automatically detect the existing images in music containing folders, if anyone knows how, I still interested smile.gif
Hope it helped you wink.gif

PS : About an implementation of this code inside ~Br3tt's original release ? It surely can help much more people smile.gif

PS(2) : Note that in the playlist settings still exists an art_path field in the "general" tab, it is really not nescesary to modify it because it has absolutelly no effect on the rest of the code due to the art implementation
bubi jackson
QUOTE(bubi jackson @ Aug 24 2008, 01:13) *
1. I need the command for the Explorer Tree Panel, please, cause I want to change it with the Album List Panel on the right splitter button.

2. Could someone tell me how to put the peakmeter in the track info panel like in the picture, please. I'm too frightened to destroy my config, if I do it on my own.

IPB Image

thx in advance


I don't check it, could someone help, please.
Falstaff
QUOTE(bubi jackson @ Aug 30 2008, 10:53) *

QUOTE(bubi jackson @ Aug 24 2008, 01:13) *
1. I need the command for the Explorer Tree Panel, please, cause I want to change it with the Album List Panel on the right splitter button.

2. Could someone tell me how to put the peakmeter in the track info panel like in the picture, please. I'm too frightened to destroy my config, if I do it on my own.

IPB Image

thx in advance


I don't check it, could someone help, please.


this topic is not for learning scripting, things that you have to learn in you want modify the config ...

sorry.
JFK
>>TOo.
Thanks for the tip

I'm having troubles with the font. All seem pretty well installed (I can choose them in writer app) but 2 are problematics for IBIZA : Kroeger 05_55 and Segoe Script. The first screen keep telling me it can't find those 2. What could be wrong ?
Mattorre
Hello I try something for the CD Case + Artist Photo


CODE

$if($findfile('./images/albums/'%artist%' - '%album%'.jpg'),
    $puts(cover.path,'./images/albums/'%artist%' - '%album%'.jpg')
,
    $if($findfile($directory_path(%path%)/folder.jpg),
        $puts(cover.path,$directory_path(%path%)/folder.jpg)
    ,
    )
)


But It doesn't work. Someone can help me please?

The second "If" doesn't work.
Pyromane
Hi,
my problem is, that the album-panel on the right dont scroll to this track wich is playing at the moment... that is not very nice when i'm hearing my hole Library in Shuffle-Mode.
(sorry if this question was asked already)
mfg Pyromane
bubi jackson
QUOTE(Falstaff @ Aug 30 2008, 13:02) *
this topic is not for learning scripting, things that you have to learn in you want modify the config ...

sorry.

OK, I understand now that there is a lot to do to modify cfg.


But I have another problem.

IPB Image

Covers in playlist are often cut off, in the GB and Chronoflow everything is alright.
Falstaff
QUOTE(bubi jackson @ Sep 1 2008, 18:29) *

QUOTE(Falstaff @ Aug 30 2008, 13:02) *
this topic is not for learning scripting, things that you have to learn in you want modify the config ...

sorry.

OK, I understand now that there is a lot to do to modify cfg.


But I have another problem.

IPB Image

Covers in playlist are often cut off, in the GB and Chronoflow everything is alright.


importing this ELPlaylist config file in ELPlaylist should fix your pb

http://rapidshare.com/files/140207708/ELPl...A_1.5a.elp.html

TomBarlow
QUOTE(bubi jackson @ Sep 1 2008, 17:29) *

QUOTE(Falstaff @ Aug 30 2008, 13:02) *
this topic is not for learning scripting, things that you have to learn in you want modify the config ...

sorry.

OK, I understand now that there is a lot to do to modify cfg.


But I have another problem.

IPB Image

Covers in playlist are often cut off, in the GB and Chronoflow everything is alright.


It looks like they're not drawing on empty rows, you need to add a line that says $enabledraw(1) just above the bit that draws the album art on the track list titleformatting. I'm not actually using Ibiza at the moment so I can't tell you exactly where that is, but it should be on the first page you see when you right click the playlist and go to settings.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2008 Invision Power Services, Inc.