Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: how to disable grouping after skin import (Read 4171 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

how to disable grouping after skin import

hey! first of all i have to hail the authors of foobar for creating such an awesome player! secondly i came here for help. i downloaded columns_ui and foonight skin, which is looking cool! i noticed, that it has to be some "new" type of skin, because it looks way different from the initial look and the options are different. and i just want to ask you, is there any way i can disable "grouping" of my playlist? i don't want any groups there, just plain playlist. i've tried everything but without success. i searched everywhere, but found nothing. i imported the .fcl file from the archive to have the actual skin. the skin is here: http://qwasio.deviantart.com/art/FooNight-v1-1c-121835729 . thanks for help, much appreciated.

how to disable grouping after skin import

Reply #1
the playlist viewer used in this config is ELPlaylist. To disable group, right click on playlist > Settings > tab "Grouping" ... and modify the "Group format" field > just remove all for no grouping AND set "Row number of group header" field value to 0

HTH


how to disable grouping after skin import

Reply #2
[Moderation—added info:] UI=Columns, skin=FooNight, viewer=ELPlaylist

good idea, this should be mandatory infos to add to each new topic

how to disable grouping after skin import

Reply #3
the playlist viewer used in this config is ELPlaylist. To disable group, right click on playlist > Settings > tab "Grouping" ... and modify the "Group format" field > just remove all for no grouping AND set "Row number of group header" field value to 0

HTH

thank you very much, you saved my day:) i'm trying to understand the variables & skin settings, it doesn't seem so hard. and sorry about not adding the important tags, i was in a hurry.

p.s. just a small question. i added %el_item_index% to my playlist, but the field is starting from 0 (zero), instead of 1. when i'm searching within the playlist, item index is from 1 (but it can be different variable or something). so i'm just asking, if there's any way to have %el_item_index% in playlist counting from 1. thanks a lot.

how to disable grouping after skin import

Reply #4
The ELPlaylist reference mentions no way to change that behaviour, but you could perhaps accomplish the desired result with $add(%el_item_index%,1).

how to disable grouping after skin import

Reply #5
The ELPlaylist reference mentions no way to change that behaviour, but you could perhaps accomplish the desired result with $add(%el_item_index%,1).

and where to add it? i'm still new to all this, i have "$puts(track.text2,%el_item_index%)" and "$drawtextex($get(track.text2)," without quotes of course. tried to modify those, even pasting "$add(%el_item_index%,1)" into the beginning of of the script, but without success.

how to disable grouping after skin import

Reply #6
…Just replace any instance of
Code: [Select]
%el_item_index%
with
Code: [Select]
$add(%el_item_index%,1)

e.g.
Code: [Select]
$puts(track.text2,$add(%el_item_index%,1))

how to disable grouping after skin import

Reply #7
…Just replace any instance of
Code: [Select]
%el_item_index%
with
Code: [Select]
$add(%el_item_index%,1)

e.g.
Code: [Select]
$puts(track.text2,$add(%el_item_index%,1))

thanks so much it's working:)

edit: btw do you know if it's possible to remove starting "zero" in %track% field? i searched forums and found some $num(%tracknumber%,1), but not working for me... you know i have them like 09, 08 and want to have 8, 9 etc. thanks