Help - Search - Members - Calendar
Full Version: foo_uie_single_column_playlist
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, 22, 23, 24, 25, 26, 27, 28
2Pacalypse
I use this line which i modified from some1 else. It currently takes up tracks 1-3 of my playlist can some1 tell me which bit to change to take up more eg 5.

Better yet can some1 break it down so i could understand it.

$imageabs2(60,60,,,60,60,17,$if($strcmp(%tracknumber%,01),3,$add(25,$mul(-22,%tracknumber%))),$replace(%path%,%filename_ext%,folder.jpg),)
sune
QUOTE(2Pacalypse @ Oct 31 2006, 13:00) *

I use this line which i modified from some1 else. It currently takes up tracks 1-3 of my playlist can some1 tell me which bit to change to take up more eg 5.

Better yet can some1 break it down so i could understand it.

$imageabs2(60,60,,,60,60,17,$if($strcmp(%tracknumber%,01),3,$add(25,$mul(-22,%tracknumber%))),$replace(%path%,%filename_ext%,folder.jpg),)

All those values are pixels:

*60,60 = width,heigth of the bounding box of the image
*the missing " , " = would be the left and top offset of the image inside that box
*60,60 = width and heigth displayed
*17,$if($strcmp(%tracknumber%,01),3,$add(25,$mul(-22,%tracknumber%))) = x-position, y-position (absolute, referring to the row)

$if($strcmp(%tracknumber%,01),3,$add(25,$mul(-22,%tracknumber%))) = if(tracknumber=1), then y-pos= 3, else y-pos= 25 + ((-22)x(tracknumber)).
So if tracknumber is 1, then y-pos = 3
is 2, then y-pos = 25+(-22x2) = -19
is 3, then y-pos = 25+(-22x3) = -41
so, x-pos is constant in every track (17 pixels), and y-pos depends on the track number ( if this wasn't so, each row would display the top-piece of the image. repeating it 3 times..like this, each piece of the image starts 22 pixels (which I assume is your row heigth) more to the top than in the previous row, making the 3 pieces fit togethershowing the complete image.


*$replace(%path%,%filename_ext%,folder.jpg) = the path of your image

I hope I explained it fine, it's kind of hard in english.. mellow.gif

sune
odyssey
I'm having a problem using multiple singlecolumn panels. If I choose a different playlist in both panels, and double-click an item to start playing, it only works in one panel. If I doubleclick in the other panel it would start playing (Edit) the selected track from the other playlist blink.gif I'd be glad if I could just swap the panels, so the one working is actually the one I wanted to use LOL headbang.gif

Another edit: I think I was able to "swap" the active panel by creating a new playlist... But still ermm.gif shifty.gif
2Pacalypse
QUOTE(sune @ Oct 31 2006, 14:41) *

QUOTE(2Pacalypse @ Oct 31 2006, 13:00) *

I use this line which i modified from some1 else. It currently takes up tracks 1-3 of my playlist can some1 tell me which bit to change to take up more eg 5.

Better yet can some1 break it down so i could understand it.

$imageabs2(60,60,,,60,60,17,$if($strcmp(%tracknumber%,01),3,$add(25,$mul(-22,%tracknumber%))),$replace(%path%,%filename_ext%,folder.jpg),)

All those values are pixels:

*60,60 = width,heigth of the bounding box of the image
*the missing " , " = would be the left and top offset of the image inside that box
*60,60 = width and heigth displayed
*17,$if($strcmp(%tracknumber%,01),3,$add(25,$mul(-22,%tracknumber%))) = x-position, y-position (absolute, referring to the row)

$if($strcmp(%tracknumber%,01),3,$add(25,$mul(-22,%tracknumber%))) = if(tracknumber=1), then y-pos= 3, else y-pos= 25 + ((-22)x(tracknumber)).
So if tracknumber is 1, then y-pos = 3
is 2, then y-pos = 25+(-22x2) = -19
is 3, then y-pos = 25+(-22x3) = -41
so, x-pos is constant in every track (17 pixels), and y-pos depends on the track number ( if this wasn't so, each row would display the top-piece of the image. repeating it 3 times..like this, each piece of the image starts 22 pixels (which I assume is your row heigth) more to the top than in the previous row, making the 3 pieces fit togethershowing the complete image.


*$replace(%path%,%filename_ext%,folder.jpg) = the path of your image

I hope I explained it fine, it's kind of hard in english.. mellow.gif

sune


Yeh i think i get it. One thing i dont understand (track info mod) is that i have my album art displayed using this line:

$imageabs2(300,300,,$sub($mul(%_height%,%_itemindex%),$add(%_height%,4)),,%height%,150,80,$replace(%path%,%filename_ext%,folder.jpg),)

I wanted to change the picture so i though i could just change the $replace.... to:

$imageabs2(300,300,,$sub($mul(%_height%,%_itemindex%),$add(%_height%,4)),,%height%,150,80,images\vista1\002.png,)

yet it displays nothing
CepiPerez
QUOTE(2Pacalypse @ Oct 31 2006, 20:42) *

Yeh i think i get it. One thing i dont understand (track info mod) is that i have my album art displayed using this line:

$imageabs2(300,300,,$sub($mul(%_height%,%_itemindex%),$add(%_height%,4)),,%height%,150,80,$replace(%path%,%filename_ext%,folder.jpg),)

I wanted to change the picture so i though i could just change the $replace.... to:

$imageabs2(300,300,,$sub($mul(%_height%,%_itemindex%),$add(%_height%,4)),,%height%,150,80,images\vista1\002.png,)

yet it displays nothing


When you use $imageabs2 you need to put the full path of the image
Try this code:

$imageabs2(300,300,,$sub($mul(%_height%,%_itemindex%),$add(%_height%,4)),,%height%,150,80,C:\Program files\foobar2000\images\vista1\002.png,)

(or replace C:\Program files\foobar2000\ with the right folder)


terrestrial
QUOTE(odyssey @ Oct 31 2006, 15:55) *

I'm having a problem using multiple singlecolumn panels. If I choose a different playlist in both panels, and double-click an item to start playing, it only works in one panel. If I doubleclick in the other panel it would start playing (Edit) the selected track from the other playlist blink.gif I'd be glad if I could just swap the panels, so the one working is actually the one I wanted to use LOL headbang.gif

Another edit: I think I was able to "swap" the active panel by creating a new playlist... But still ermm.gif shifty.gif


are you using the last version from yesterday?
odyssey
QUOTE(terrestrial @ Nov 1 2006, 01:37) *
are you using the last version from yesterday?

I need to update more often tongue.gif I got the one from 27. oct. I'll test this one smile.gif
CepiPerez
@terrestrial

Will you add $button function to this component?
I'm waiting for it.

Regards.
jonpb
QUOTE(terrestrial @ Oct 31 2006, 01:04) *

QUOTE(jonpb @ Oct 30 2006, 22:08) *
With this layout it is not really possible to use the foo_uie_quicksearch plugin because it always searches the current active playlist


no, active and playing playlists are different. in any case I've switched things around for the new version to make things work better.

Thanks for the quick response, foo_uie_quicksearch is working as expected now.
2Pacalypse
QUOTE(CepiPerez @ Oct 31 2006, 17:52) *

QUOTE(2Pacalypse @ Oct 31 2006, 20:42) *

Yeh i think i get it. One thing i dont understand (track info mod) is that i have my album art displayed using this line:

$imageabs2(300,300,,$sub($mul(%_height%,%_itemindex%),$add(%_height%,4)),,%height%,150,80,$replace(%path%,%filename_ext%,folder.jpg),)

I wanted to change the picture so i though i could just change the $replace.... to:

$imageabs2(300,300,,$sub($mul(%_height%,%_itemindex%),$add(%_height%,4)),,%height%,150,80,images\vista1\002.png,)

yet it displays nothing


When you use $imageabs2 you need to put the full path of the image
Try this code:

$imageabs2(300,300,,$sub($mul(%_height%,%_itemindex%),$add(%_height%,4)),,%height%,150,80,C:\Program files\foobar2000\images\vista1\002.png,)

(or replace C:\Program files\foobar2000\ with the right folder)


ahh i get it. But if i want to use imageabs2 to display a image in my foobar (USB drive) how would i do that (as in the drive letter will vary depending on PC) is there a %path% for foobar?

many thanks
phunkydizco
QUOTE(cic @ Oct 27 2006, 22:30) *

I can't display any images, I tried $imageabs(0,0,images\somerandomimage.png,) (I placed images\somerandomimage.png in the foobar-directory) but no image. crying.gif
Nobody else seem to have this problem unsure.gif. No error, no crash or something like that, just nothing...
I have no idea what to do. No copy-n-past code posted previously in this thread works either, so I don't think its a problem with my code. Do I need to get some other plugin for the imageabs function or something like that?

The whole code:
CODE
$font(calibri,10,bold,)
$alignabs(10,9,200,50,,)
%artist%
$imageabs(0,0,images\somerandomimage.png,)



I am having the same problem. Have you fix it?
CepiPerez
QUOTE(phunkydizco @ Nov 1 2006, 10:45) *

QUOTE(cic @ Oct 27 2006, 22:30) *

I can't display any images, I tried $imageabs(0,0,images\somerandomimage.png,) (I placed images\somerandomimage.png in the foobar-directory) but no image. crying.gif
Nobody else seem to have this problem unsure.gif. No error, no crash or something like that, just nothing...
I have no idea what to do. No copy-n-past code posted previously in this thread works either, so I don't think its a problem with my code. Do I need to get some other plugin for the imageabs function or something like that?

The whole code:
CODE
$font(calibri,10,bold,)
$alignabs(10,9,200,50,,)
%artist%
$imageabs(0,0,images\somerandomimage.png,)



I am having the same problem. Have you fix it?


for $imageabs the image must be in C:\Documents and settings\YOURNAME\Application data\foobar2000, not in C:\Program files\Foobar2000. Maybe you put the images in the wrong folder. Check it.





FofR
Thanks for the update Terrestrial, love the wildcard and fileexist options.

How do you implement the horizontal and vertical align options?
edit: I don't need this now thanks to the NOKEEPASPECT (thats no keep aspect), took me a while to work out what that meant smile.gif

Can't wait to see these in Track Info Panel.
bangbang023
Ok, I actually have a setup from Neowin working. I had the images in the foobar program directory instead of my application data directory. The only thing now is that I need to find a way to not display a header or album art when there is less than, say, 4 tracks in the album. I am sorting by %directoryname%. Unfortunately, because I don't have all full albums, the "totaltracks" variable tends to be a bit unreliable. I need to find someway to count it by files in the directory or something of the sort. Can you guys perhaps think of something or a variable that I could use that I simply don't know of?
nauqneyugn
I'm in need of some troubleshooting help.

I'm using a very slightly modified version of tool++'s single column style and I'm having some trouble with the placement of album art.

The config uses this line to display the art:

$imageabs2(90,90,,,,,0,$mul($sub(%tracknumber%,1),-15),$replace(%path%,%filename_ext%,)folder.jpg,)

As far as I know, the "90,90" should be resizing the image, but then why does this occur (the Yeah Yeah Yeahs album cover):

IPB Image

Thanks!

blaxima
QUOTE(nauqneyugn @ Nov 2 2006, 00:07) *

I'm in need of some troubleshooting help.

I'm using a very slightly modified version of tool++'s single column style and I'm having some trouble with the placement of album art.

The config uses this line to display the art:

$imageabs2(90,90,,,,,0,$mul($sub(%tracknumber%,1),-15),$replace(%path%,%filename_ext%,)folder.jpg,)

As far as I know, the "90,90" should be resizing the image, but then why does this occur (the Yeah Yeah Yeahs album cover):

Thanks!


Because the size of the image is not an even aspect ratio. Resize the image to say 300x300
nauqneyugn
QUOTE(blaxima @ Nov 1 2006, 21:17) *

Because the size of the image is not an even aspect ratio. Resize the image to say 300x300


Apparently it does matter that it is an even aspect ratio, but then why do we define both the height and width of a picture? Aren't the first two values in $imageabs2 supposed to resize the picture to the values I want? unsure.gif
blaxima
QUOTE(nauqneyugn @ Nov 2 2006, 00:28) *

QUOTE(blaxima @ Nov 1 2006, 21:17) *

Because the size of the image is not an even aspect ratio. Resize the image to say 300x300


Apparently it does matter that it is an even aspect ratio, but then why do we define both the height and width of a picture? Aren't the first two values in $imageabs2 supposed to resize the picture to the values I want? unsure.gif


Because thats how the plugin handles images. It will resize an image to what you specify but it cannot manipulate the aspect ratio.
nauqneyugn
QUOTE(blaxima @ Nov 1 2006, 21:32) *

Because thats how the plugin handles images. It will resize an image to what you specify but it cannot manipulate the aspect ratio.


Ahh ok, thanks for the answer. Much appreciated!
FofR
Get the latest version and add NOKEEPASPECT as an option to stretch the image to fit 300x300
LXtreme
Bug or my fault?!

I'm using the latest version (foo_uie_single_column_playlist (2006-10-31)) in my "Compact-Mode-View" (columns design). In "Full-Mode-View" i use the columns playlist. Switching between these two modes is provided by a button. So far i had no problems with this configuration.

But with the latest update of SCPL i get in trouble when switching from Full to Compact View:
SCPL shows the active playlist, but every song is shown like a group (based on my group config).
When i switch to another playlist, it is shown correctly. And when i switch back to the active playlist it is shown correctly now, too.

Any ideas?!

carmenm
QUOTE(LXtreme @ Nov 2 2006, 05:18) *

Bug or my fault?!

I'm using the latest version (foo_uie_single_column_playlist (2006-10-31)) in my "Compact-Mode-View" (columns design). In "Full-Mode-View" i use the columns playlist. Switching between these two modes is provided by a button. So far i had no problems with this configuration.

But with the latest update of SCPL i get in trouble when switching from Full to Compact View:
SCPL shows the active playlist, but every song is shown like a group (based on my group config).
When i switch to another playlist, it is shown correctly. And when i switch back to the active playlist it is shown correctly now, too.

Any ideas?!

I have the same problem as you. For me the problem also appears while changing the layout. And like you everything s ok when i change playlist.
FofR
I can confirm I also had this problem when I was removing something from my columns_ui layout.
ubi
Same problem here too while changing the layout.
q-stankovic
It must be the same bug i posted on side 32 of this thread. It occurs when i use tabs (not layouts like you). Notice also the other bug i mentioned.

EDIT: Sorry! No it isn't the same. can somebody confirm what occured to me?
q-stankovic
(I am sorry if this bug is already mentioned but now i haven't much time to read the last pages)

Bug:

If and only if the SCP doesn't shows the active playlist but the playing one or a special one (defined in context menu) this occurs: it is not possible to start playback by doubleclicking an item. Playback starts but in most cases the active playlist begins to play.
terrestrial
QUOTE(Corelian @ Oct 31 2006, 05:27) *

QUOTE(ubi @ Oct 31 2006, 11:49) *

No more graphical glitches, thank you very much! :>

Yes there are. At least the corruption at the top of the playlist remains (also reported by Squeller on some earlier version).


can you please post a screenshot.

QUOTE(CepiPerez @ Oct 31 2006, 20:01) *

@terrestrial

Will you add $button function to this component?
I'm waiting for it.

Regards.


eventually... no idea when though wink.gif

QUOTE(LXtreme @ Nov 2 2006, 06:18) *

Bug or my fault?!

I'm using the latest version (foo_uie_single_column_playlist (2006-10-31)) in my "Compact-Mode-View" (columns design). In "Full-Mode-View" i use the columns playlist. Switching between these two modes is provided by a button. So far i had no problems with this configuration.

But with the latest update of SCPL i get in trouble when switching from Full to Compact View:
SCPL shows the active playlist, but every song is shown like a group (based on my group config).
When i switch to another playlist, it is shown correctly. And when i switch back to the active playlist it is shown correctly now, too.

Any ideas?!


screenshot?
ubi
Before:
IPB Image

After:
IPB Image

I normally use SCPL but sometimes I switch via hotkey to my lyrics layout, after switching back from my lyrics layout to my SCPL layout playlist is like in the after screenshot. This can be fixed just like LXtreme said, switch to another playlist and it is shown correctly...
Corelian
QUOTE(terrestrial @ Nov 2 2006, 19:18) *

QUOTE(Corelian @ Oct 31 2006, 05:27) *

QUOTE(ubi @ Oct 31 2006, 11:49) *

No more graphical glitches, thank you very much! :>

Yes there are. At least the corruption at the top of the playlist remains (also reported by Squeller on some earlier version).

can you please post a screenshot.

Squeller already posted a screenshot, but here goes. There seems to be two lines of corrupted pixels always at the top of the playlist:
IPB Image

foobar2000 0.9.4.1
Columns UI 0.1.3 beta 1v5
Single Column Playlist Display 0.3.2 beta Oct 31
terrestrial
please try this version and post back the contents of the console.
ubi
dunno if you meant to try this version for my problem too but here it is:
CODE
Playlist: 0 | ubi's
0: Ashes Against the Grain
8: Enter
14: So Divided
25: The Eraser
34: Moletopopolis
44: Return to the Sea
55: Veneer
66: Alaska
77: Jesu
82: The Anatomy Of
WndRect: [132,125,411,279]
ListViewRect: [132,125,411,279]
WndRect: [132,527,132,542]
ListViewRect: [132,527,132,542]
WndRect: [335,578,732,968]
ListViewRect: [335,578,732,968]
Startup time : 0:03.227711
WndRect: [335,578,732,949]
ListViewRect: [335,578,732,949]
WndRect: [335,578,732,968]
ListViewRect: [335,578,732,968]
Playlist: 0 | ubi's
0: 01. Agalloch - [Ashes Against the Grain-2006 #01] Limbs 9:51
1: 02. Agalloch - [Ashes Against the Grain-2006 #02] Falling Snow 9:39
2: 03. Agalloch - [Ashes Against the Grain-2006 #03] This White Mountain on Which You Will Die 1:39
3: 04. Agalloch - [Ashes Against the Grain-2006 #04] Fire Above, Ice Below 10:29
4: 05. Agalloch - [Ashes Against the Grain-2006 #05] Not Unlike the Waves 9:16
5: 06. Agalloch - [Ashes Against the Grain-2006 #06] Our Fortress is Burning... I 5:26
6: 07. Agalloch - [Ashes Against the Grain-2006 #07] Our Fortress is Burning... II - Bloodbirds 6:21
7: 08. Agalloch - [Ashes Against the Grain-2006 #08] Our Fortress is Burning... III - the Grain 7:10
8: 09. Russian Circles - [Enter-2006 #01] Carpe 9:01
9: 10. Russian Circles - [Enter-2006 #02] Micah 8:03
10: 11. Russian Circles - [Enter-2006 #03] Death Rides A Horse 5:46
11: 12. Russian Circles - [Enter-2006 #04] Enter 7:54
12: 13. Russian Circles - [Enter-2006 #05] You Already Did 8:15
13: 14. Russian Circles - [Enter-2006 #06] New Macabre 5:18
14: 15. And You Will Know Us By The Trail Of Dead - [So Divided-2006 #01] Intro: A Song Of Fire And Wine 1:42
15: 16. And You Will Know Us By The Trail Of Dead - [So Divided-2006 #02] Stand In Silence 4:35
16: 17. And You Will Know Us By The Trail Of Dead - [So Divided-2006 #03] Wasted State Of Mind 5:27
17: 18. And You Will Know Us By The Trail Of Dead - [So Divided-2006 #04] Naked Sun 6:04
18: 19. And You Will Know Us By The Trail Of Dead - [So Divided-2006 #05] Gold Heart Mountain Top Queen Directory 2:14
19: 20. And You Will Know Us By The Trail Of Dead - [So Divided-2006 #06] So Divided 6:29
20: 21. And You Will Know Us By The Trail Of Dead - [So Divided-2006 #07] Life 5:59
21: 22. And You Will Know Us By The Trail Of Dead - [So Divided-2006 #08] Eight Day Hell 2:09
22: 23. And You Will Know Us By The Trail Of Dead - [So Divided-2006 #09] Witches Web 4:11
23: 24. And You Will Know Us By The Trail Of Dead - [So Divided-2006 #10] Segue: In The Realms Of The Unreal 2:19
24: 25. And You Will Know Us By The Trail Of Dead - [So Divided-2006 #11] Sunken Dreams 5:05
25: 26. Thom Yorke - [The Eraser-2006 #01] The Eraser 4:56
26: 27. Thom Yorke - [The Eraser-2006 #02] Analyse 4:03
27: 28. Thom Yorke - [The Eraser-2006 #03] The Clock 4:13
28: 29. Thom Yorke - [The Eraser-2006 #04] Black Swan 4:50
29: 30. Thom Yorke - [The Eraser-2006 #05] Skip Divided 3:36
30: 31. Thom Yorke - [The Eraser-2006 #06] Atoms For Peace 5:14
31: 32. Thom Yorke - [The Eraser-2006 #07] And It Rained All Night 4:16
32: 33. Thom Yorke - [The Eraser-2006 #08] Harrowdown Hill 4:39
33: 34. Thom Yorke - [The Eraser-2006 #09] Cymbal Rush 5:15
34: 35. Deathmøle - [Moletopopolis-2006 #01] The Prince Is Born 4:11
35: 36. Deathmøle - [Moletopopolis-2006 #02] Unicorn Remains 4:04
36: 37. Deathmøle - [Moletopopolis-2006 #03] The Unicorn Prince Approaches The Fire Centaur Clan (With A Gift Of Smoldering Ash From The Crater Of Mount Unimpous) 4:20
37: 38. Deathmøle - [Moletopopolis-2006 #04] Unicorn Battle 2:52
38: 39. Deathmøle - [Moletopopolis-2006 #05] With Flowing Manes They Charge 3:41
39: 40. Deathmøle - [Moletopopolis-2006 #06] Unicorn Waltz 4:29
40: 41. Deathmøle - [Moletopopolis-2006 #07] The Pyrrhic Victory of The Unicorn Prince 7:13
41: 42. Deathmøle - [Moletopopolis-2006 #08] Cycloptic Ashes Like Fallen Snow 5:35
42: 43. Deathmøle - [Moletopopolis-2006 #09] Death Comes To The Unicorn Prince 7:03
43: 44. Deathmøle - [Moletopopolis-2006 #10] We Tell The Tales Of Those We Vanquish 5:12
44: 45. Islands - [Return to the Sea-2006 #01] Swans (Life After Death) 9:33
45: 46. Islands - [Return to the Sea-2006 #02] Humans 5:00
46: 47. Islands - [Return to the Sea-2006 #03] Don't Call Me Whitney, Bobby 2:32
47: 48. Islands - [Return to the Sea-2006 #04] Rough Gem 3:37
48: 49. Islands - [Return to the Sea-2006 #05] Tsuxiit 3:05
49: 50. Islands - [Return to the Sea-2006 #06] Where There's a Will There's a Whalebone 3:57
50: 51. Islands - [Return to the Sea-2006 #07] Jogging Gorgeous Summer 2:47
51: 52. Islands - [Return to the Sea-2006 #08] Volcanoes 5:27
52: 53. Islands - [Return to the Sea-2006 #09] If 4:33
53: 54. Islands - [Return to the Sea-2006 #10] Ones 6:12
54: 55. Islands - [Return to the Sea-2006 #11] Renaud 16:21
55: 56. José González - [Veneer-2003 #01] Slow Moves 2:52
56: 57. José González - [Veneer-2003 #02] Remain 3:46
57: 58. José González - [Veneer-2003 #03] Lovestain 2:17
58: 59. José González - [Veneer-2003 #04] Heartbeats 2:40
59: 60. José González - [Veneer-2003 #05] Crosses 2:43
60: 61. José González - [Veneer-2003 #06] Deadweight On Velveteen 3:27
61: 62. José González - [Veneer-2003 #07] All You Deliver 2:20
62: 63. José González - [Veneer-2003 #08] Stay In The Shade 2:23
63: 64. José González - [Veneer-2003 #09] Hints 3:52
64: 65. José González - [Veneer-2003 #10] Save Your Day 2:30
65: 66. José González - [Veneer-2003 #11] Broken Arrows 1:58
66: 67. Between the Buried and Me - [Alaska-2005 #01] All Bodies 6:12
67: 68. Between the Buried and Me - [Alaska-2005 #02] Alaska 3:58
68: 69. Between the Buried and Me - [Alaska-2005 #03] Croakies and Boatshoes 2:22
69: 70. Between the Buried and Me - [Alaska-2005 #04] Selkies: the Endless Obsession 7:23
70: 71. Between the Buried and Me - [Alaska-2005 #05] Breathe In, Breathe Out 0:56
71: 72. Between the Buried and Me - [Alaska-2005 #06] Roboturner 7:07
72: 73. Between the Buried and Me - [Alaska-2005 #07] Backwards Marathon 8:27
73: 74. Between the Buried and Me - [Alaska-2005 #08] Medicine Wheel 4:18
74: 75. Between the Buried and Me - [Alaska-2005 #09] The Primer 4:46
75: 76. Between the Buried and Me - [Alaska-2005 #10] Autodidact 5:31
76: 77. Between the Buried and Me - [Alaska-2005 #11] Laser Speed 2:53
77: 78. Jesu - [Jesu-2005 #01] Your Path To Divinity 9:15
78: 79. Jesu - [Jesu-2005 #02] Friends Are Evil 9:44
79: 80. Jesu - [Jesu-2005 #03] Tired of Me 9:31
80: 81. Jesu - [Jesu-2005 #04] We All Faulter 6:57
81: 82. Jesu - [Jesu-2005 #05] Walk on Water 11:24
82: 83. Between the Buried and Me - [The Anatomy Of-2006 #01] Blackened (Metallica) 6:40
83: 84. Between the Buried and Me - [The Anatomy Of-2006 #02] Kickstart My Heart (Mötley Crüe) 4:55
84: 85. Between the Buried and Me - [The Anatomy Of-2006 #03] The Day I Tried to Live (Soundgarden) 5:29
85: 86. Between the Buried and Me - [The Anatomy Of-2006 #04] Bicycle Race (Queen) 3:09
86: 87. Between the Buried and Me - [The Anatomy Of-2006 #05] Three of a Perfect Pair (King Crimson) 4:11
87: 88. Between the Buried and Me - [The Anatomy Of-2006 #06] Us and Them (Pink Floyd) 7:52
88: 89. Between the Buried and Me - [The Anatomy Of-2006 #07] Geek U.S.A. (Smashing Pumpkins, The) 5:25
89: 90. Between the Buried and Me - [The Anatomy Of-2006 #08] Forced March (Earth Crisis) 3:52
90: 91. Between the Buried and Me - [The Anatomy Of-2006 #09] Territory (Sepultura) 4:51
91: 92. Between the Buried and Me - [The Anatomy Of-2006 #10] Change (Blind Melon) 4:07
92: 93. Between the Buried and Me - [The Anatomy Of-2006 #11] Malpractice (Faith No More) 4:02
93: 94. Between the Buried and Me - [The Anatomy Of-2006 #12] Little 15 (Depeche Mode) 4:32
94: 95. Between the Buried and Me - [The Anatomy Of-2006 #13] Cemetary Gates (Pantera) 7:06
95: 96. Between the Buried and Me - [The Anatomy Of-2006 #14] Colorblind (Counting Crows) (Bonus Track) 3:47
WndRect: [335,176,614,330]
ListViewRect: [335,176,614,330]
WndRect: [335,578,732,968]
ListViewRect: [335,578,732,968]
WndRect: [335,578,732,949]
ListViewRect: [335,578,732,949]
WndRect: [335,578,732,968]
ListViewRect: [335,578,732,968]


startup-->SCPL-->switch to lyrics layout-->switch back to SCPL layout
Corelian
CODE

WndRect: [132,125,411,279]
ListViewRect: [134,127,409,277]
Playlist: 0 | Playlist
0: The White Stripes
17: The Life Pursuit
30: Layla and Other Assorted Love Songs
WndRect: [132,125,411,279]
ListViewRect: [134,127,409,277]
WndRect: [494,230,1177,907]
ListViewRect: [496,232,1175,905]
WndRect: [494,152,1177,907]
ListViewRect: [496,154,1175,905]
Startup time : 0:00.908829
2Pacalypse
Ive very nearly got foobar looking how i want it thank to u guys. My only problem is single tracks.

I'm gonna tag all my single tracks correctly this weekend. I was wondering which is the best way to tag them as singles?

and how would i check if a song is a single or part of a album?
terrestrial
ok, I've uploaded another debug version. it should fix the corruption / grouping problems, but I'd still like the console output from someone who had the display corruption, please.
Corelian
QUOTE(terrestrial @ Nov 2 2006, 23:27) *

ok, I've uploaded another debug version. it should fix the corruption / grouping problems, but I'd still like the console output from someone who had the display corruption, please.

Yes, the corruption is gone, it's actually replaced by two lines of grey pixels.
CODE

WndClientRect: [0,0,275,150]
WndRect: [132,125,411,279]
ListViewRect: [134,127,409,277]
WndClientRect: [0,0,275,150]
WndRect: [132,125,411,279]
ListViewRect: [134,127,409,277]
WndClientRect: [0,0,679,673]
WndRect: [467,283,1150,960]
ListViewRect: [469,285,1148,958]
WndClientRect: [0,0,679,751]
WndRect: [467,205,1150,960]
ListViewRect: [469,207,1148,958]
Startup time : 0:00.800851
ubi
Yes, I can confirm that this version fixes the grouping problems at least in my case
odyssey
QUOTE(terrestrial @ Nov 1 2006, 01:37) *

QUOTE(odyssey @ Oct 31 2006, 15:55) *

I'm having a problem using multiple singlecolumn panels. If I choose a different playlist in both panels, and double-click an item to start playing, it only works in one panel. If I doubleclick in the other panel it would start playing (Edit) the selected track from the other playlist blink.gif I'd be glad if I could just swap the panels, so the one working is actually the one I wanted to use LOL headbang.gif

Another edit: I think I was able to "swap" the active panel by creating a new playlist... But still ermm.gif shifty.gif


are you using the last version from yesterday?

I tried the 30. Oct release. Multiple playlists are still (even more?) messed up. Especially if you drag-drop tracks from explorer into a panel, it almost never shows up - Sometimes it ends up in another playlist and other times they just disappear.

And a follow up: Any plans on implementing $button in this? smile.gif
LXtreme
QUOTE(ubi @ Nov 2 2006, 23:57) *

Yes, I can confirm that this version fixes the grouping problems at least in my case


grouping problem fixed by debug version here, too smile.gif

(btw: problem only occured, if one playlist was active (playing/paused))
tool++
Startup time : 0:15.500766
WndClientRect: [0,0,279,154]
WndRect: [788,379,1067,533]
ListViewRect: [788,379,1067,533]
WndClientRect: [0,0,458,523]
WndRect: [788,379,1246,902]
ListViewRect: [788,379,1246,902]


It fixes the issue. Release compile please (fo' speed <3).

You're doing a damn good job, terrestrial
Squeller
QUOTE(terrestrial @ Nov 2 2006, 13:27) *
ok, I've uploaded another debug version. it should fix the corruption / grouping problems, but I'd still like the console output from someone who had the display corruption, please.
Where can I find the debug version? I want to test when I'm at home.
Chaser
I guess you should try this link: http://users.bowie-cass.com/singa/foo_uie_...laylist-dbg.zip
Squeller
OK, the display bug (display of window background on top) has gone. The panel displays grey there now, which looks way better.

CODE
WndClientRect: [0,0,279,154]
WndRect: [106,100,385,254]
ListViewRect: [106,100,385,254]
WndClientRect: [0,0,0,14]
WndRect: [110,100,110,114]
ListViewRect: [110,100,110,114]
WndClientRect: [0,0,707,191]
WndRect: [272,499,979,690]
ListViewRect: [272,499,979,690]
WndClientRect: [0,0,1020,253]
WndRect: [4,495,1024,748]
ListViewRect: [4,495,1024,748]
WndClientRect: [0,0,715,218]
WndRect: [268,476,983,694]
ListViewRect: [268,476,983,694]
WndClientRect: [0,0,1020,272]
WndRect: [4,476,1024,748]
ListViewRect: [4,476,1024,748]
Startup time : 0:10.211114
WndClientRect: [0,0,1020,251]
WndRect: [4,497,1024,748]
ListViewRect: [4,497,1024,748]
WndClientRect: [0,0,1020,272]
WndRect: [4,476,1024,748]
ListViewRect: [4,476,1024,748]
WndClientRect: [0,0,1020,251]
WndRect: [4,497,1024,748]
ListViewRect: [4,497,1024,748]
WndClientRect: [0,0,1020,272]
WndRect: [4,476,1024,748]
ListViewRect: [4,476,1024,748]
WndClientRect: [0,0,1020,251]
WndRect: [4,497,1024,748]
ListViewRect: [4,497,1024,748]
WndClientRect: [0,0,1020,272]
WndRect: [4,476,1024,748]
ListViewRect: [4,476,1024,748]
terrestrial
updated.

I rewrote most of the keyboard / mouse handling stuff so there may be some bugs, but on the whole it should work a lot better now.
carmenm
Thanks Terrestrial for this update. Seeing that you are working on the mouse, would it be possible to have an action on middle mouse button. I really miss the delete with middle mouse button feature from Columns UI
Corelian
Thank you for your efforts terrestrial.
henn1ng
first of all, thanks for the updates!

but there is still one major feature im missing for this component and i think tool++ has mentioned it before:

the ability to set a minimal group size.

this would bring alot more structure to my playlist.

thx in advance.

henn1ng
chiwou
hi there
I am using this plugin for a long time, but now I have a prob ^^ yeah I am using the current version tongue.gif

CODE

drawrect(0,0,0,0,brushcolor-159-190-80 pencolor-139-170-60)
$imageabs(0,0,'images\bg1.png',flow)

$imageabs(0,0,images\1bit\folder.png,flow)

$padding(22,0)
$align(left,middle)
$font(Segoe UI,9,bold,51-67-11)
$if($meta_test(album artist),%album%,%artist%)

$padding(-20,2)

$align(right,top)
$font(Segoe UI,7,bold,71-87-31)
$if($meta_test(album artist),%album artist%,%album%)

$align(right,bottom)
$font(kroeger 05_55,6,,91-107-51)
[%date% '| '][%genre%]


and the $align option dont work right for me
especially the top alignment, when I change it to middle or bottom the text appears "correct" smile.gif but I want to align the album informations to the right top

cya
chiwou
xxchrno
is it me or the links are down? i cant download the current verson that terrestial posted
Tomacco_Boy
I dont know if this is a bug or not, but you used to be able to select a group of tracks and right click for the context menu and the group would still be selected, now when you go to right click on any of em it only selects that one. Hope that made sense blush.gif
bbt-hh
First let me thank you for your great plugin.
QUOTE(Tomacco_Boy @ Nov 4 2006, 09:36) *

I dont know if this is a bug or not, but you used to be able to select a group of tracks and right click for the context menu and the group would still be selected, now when you go to right click on any of em it only selects that one. Hope that made sense blush.gif

I can confirm this bug.

And I noticed some other problems:
- 'Pos1' jumps to the first playlist entry, but isn't showing the group header.
- Opening foobar scrolls to the first playlist entry as well. Again not showing the group header. This occurs regardless of the playlist position when closing foobar.
- Pictures in folders which contain the charakter '#' are not displayed.

Thanks
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.