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: Columns UI (Read 4589692 times) previous topic - next topic
0 Members and 2 Guests are viewing this topic.

Columns UI

Reply #3400
(don't know if i rather should open a new thread...)

Is it possible to implement displaying the total size of a selection in the status bar?
... the total lenght already shows up, so this should be quite easy (?)

this would be very handy, if you want to make a playlist for your portable player. (-> you wouldn't have to open the 'properties'dialog every 20 seconds  )


Columns UI

Reply #3402
hi! Just fixed ui column and tried various ui's, But I never get the album-picture on them, and never the info-box that som ui have either.. What's wrong?

Columns UI

Reply #3403
daizoe:

Are you adding the albumart and trackinfo components to foobar? Are you then adding them to your ColumnsUI layout?

Columns UI

Reply #3404
I just upgraded to 0.1.3 beta 1v5 and now my progress slider doesn't show a time tooltip when being moved like it did before. Is this a bug?

Columns UI

Reply #3405
can anyone post their code for playlist switcher. i once saw one that added number of the songs that were in the playlist, had some other things too, but i can't find it on forum.

Columns UI

Reply #3406
Mine
Code: [Select]
$if(%is_playing%,$rgb(150,200,64)%title%,%title%)
$if(%is_active%,$tab()$rgb()%size%)
It only adds total count of playlist if it's active you can change it by removing the last if statement and keeping %size%. You may also be interested in this.

Columns UI

Reply #3407
yes, thuan, thank you very much

Columns UI

Reply #3408
Hello. Here's the problem. In the playlist view, in my album column, when album name is too long, longer then the column width, you get name...., because i hate that dots, and not being able to see the whole album name, i wrote code that cuts the album name on two parts, if %album% is longer than 45 characters, and puts the first part (to the last ' ' from first 45 chars of %album%) besides the first song on the album, and the second part (if it exists) besides the second song, all in the album column, ofcourse. Now, the problem is that it's hard to determine how long the title is, because e.g. 45 dots aren't long as 45 letters. So, sometimes album name doesn't need to be cut in two, although it has over 45 chars, and sometimes it does. So i would be very grateful if someone had any ideas how to, somehow, determine when album name is too long, and when it's not. I hope it's understudable where the problem is, here's the code, maybe it will help if it isn't.

Code: [Select]
$iflonger(%album%,45
,
$select($num(%tracknumber%,1),$left(%album%,$strrchr($left(%album%,45), )))
$select($num(%tracknumber%,1),,$right(%album%,$sub($len(%album%),$strrchr($left(%album%,45), ))))
,
$select($num(%tracknumber%,1),%album%)
)

Columns UI

Reply #3409
I found a little bug, maybe not a bug but at least a little bit annoying. When adding a button: "add to playback queue" there is a problem with %isplaying%

I use this for a index-column:
Code: [Select]
$if($or(%isplaying%,%ispaused%),

$select($add(1,$mod(%_time_elapsed_seconds%,6)),♪,♪♪,♪♪♪,♪♪♪♪,♪♪♪♪♪,♪♪♪♪♪♪)
,

$if(%skip%,$rgb(255,0,0)SKIP,
$if(%cwb_queueindexes%,$rgb(255,0,0)'['%cwb_queueindex%/%cwb_queuelength%']'$rgb(),%list_index%')'))
)


When using the rightclick "add to playback queue" menu (pressing next to play this of course), it jumps correctly in the "$if($or(%isplaying%,%ispaused%)" condition, but not when using the button!

Columns UI

Reply #3410
anything new in regards to removing those annoying borders???

Columns UI

Reply #3411
Buttons:

I'd like to be able to select how a button reacts to a click. I don't want the buttons to move when I select 'No edges' Appearance.
There's a storm on the loose, there's sirens in my head...

Columns UI

Reply #3412
Hi,

I upgraded to foobar2k v0.9.4 and installed Columns UI  v0.1.3 beta 1v5. So far so good, but when I extracted the Album List Panel v0.2.1 beta 4 and the Album Art Panel v0.2.4.1 they didn't appear. I right-click and go to Toolbars but none of the panels is there.

What is the problem? Can I fix it?

Columns UI

Reply #3413
It's a funny thing but today browsing the net i've found Columns UI 0.1.3 beta 1v6 TEST,as i understand it's unreleased.
Favourite artist:CD-R
Favourite album:700MB

Columns UI

Reply #3414
disperse:
File> Preferences> Display> Columns UI> "Layout" Tab

You need to add the panels to your layout, for more information adding panels see here.

Russell777:
See this post. It was an unofficial compile to solve some vista compatibility issues.

Columns UI

Reply #3415
disperse:
File> Preferences> Display> Columns UI> "Layout" Tab

You need to add the panels to your layout, for more information adding panels see here.

Russell777:
See this post. It was an unofficial compile to solve some vista compatibility issues.


Thanks a lot!

Columns UI

Reply #3416
Just wanted to re-affirm, v6 TEST works fine with 0.9.4 on vista 5728, No crashes anymore.

Columns UI

Reply #3417
I'm having problems with inline editing. The navigation doesn't seem to work. Tab behaves like enter and saves but doesn't move to the next field; instead it exits edit mode. Tab + Ctrl moves to the next field, not the preceeding (although Tab + Shift works).

Columns UI

Reply #3418
I'm having problems with inline editing. The navigation doesn't seem to work. Tab behaves like enter and saves but doesn't move to the next field; instead it exits edit mode. Tab + Ctrl moves to the next field, not the preceeding (although Tab + Shift works).

Update to v6 above. The shortcut for preceeding is meant to be SHIFT-TAB, that one is an error in the documentation.
.

Columns UI

Reply #3419
nice test version 6  glad to see you back on the forums musimusic  does that mean we should be expecting more columns ui updates soon?

fingers crossed

Columns UI

Reply #3420
Feature request: (checkbox) ability to hide a scrollbar in a playlist view

Columns UI

Reply #3421
I found a little bug, maybe not a bug but at least a little bit annoying. When adding a button: "add to playback queue" there is a problem with %isplaying%

I use this for a index-column:
Code: [Select]
$if($or(%isplaying%,%ispaused%),

$select($add(1,$mod(%_time_elapsed_seconds%,6)),?,??,???,????,?????,??????)
,

$if(%skip%,$rgb(255,0,0)SKIP,
$if(%cwb_queueindexes%,$rgb(255,0,0)'['%cwb_queueindex%/%cwb_queuelength%']'$rgb(),%list_index%')'))
)


When using the rightclick "add to playback queue" menu (pressing next to play this of course), it jumps correctly in the "$if($or(%isplaying%,%ispaused%)" condition, but not when using the button!

bump

 

Columns UI

Reply #3422
nice test version 6  glad to see you back on the forums musimusic  does that mean we should be expecting more columns ui updates soon?

fingers crossed


Not really... maybe when I buy a new laptop (old one broke). But choice in Core 2 Duo / Turion X2 laptops, 14/15" WSXGA(+) screen with reasonable spec (and price) is poor  So, don't know when I'll get a new laptop either.
.

Columns UI

Reply #3423
dang thats bad news musicmusic - hope you were able to keep all your work
yeah the new duo core laptops are very attractive - I have even been tempted to get an apple laptop and install xp onto it

Columns UI

Reply #3424
musicmusic, If you fix the borders a fund will be started. I can sense it
err... i'm not using windows any more ;)