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: foo_ui_panels (Read 1317384 times) previous topic - next topic
0 Members and 6 Guests are viewing this topic.

foo_ui_panels

Reply #2175
Does anyone know if $meta_sum() or $info_sum() could be used to get the playing time of an album?  I've tried $info_sum(length_seconds) in the group section of SCPL, but it always returns 0, as does $meta_info(length_seconds).

foo_ui_panels

Reply #2176
Terrestrial: I don't know if it had been reported but I found this:

When I hover a button (pause in this example) and then I get the cursor out of the button area, the text underneath the button disapears.

The button is a PNG with transparency. You can see the X and Y position where the button starts; where the text underneath it disapears.



see example here:


foo_ui_panels

Reply #2177
Terrestrial: I don't know if it had been reported but I found this:

When I hover a button (pause in this example) and then I get the cursor out of the button area, the text underneath the button disapears.

The button is a PNG with transparency. You can see the X and Y position where the button starts; where the text underneath it disapears.



see example here:



Why not either crop the png so theres less transparency above the actual pic or you could change the hight of the button. Looks very nice btw would love to see a full shot.
I love π

foo_ui_panels

Reply #2178
Why not either crop the png so theres less transparency above the actual pic or you could change the hight of the button. Looks very nice btw would love to see a full shot.


I could do that but I thought it would be better to report it. Otherwise it would be like hiding the duest under the carpet rather than cleaning it.. you know what I mean?

It really is no big deal.



As for my config.. it's almost done but there's something that keeps me from finishing it; i can't find the way to make a button to activate a specific playlist in the SCP. I'll post the screenshot in the thread for that when i figure that one out.

foo_ui_panels

Reply #2179
Next question.  Is there a way to use SCPL for example three times with different config each time in PanelsUI?

foo_ui_panels

Reply #2180
Next question.  Is there a way to use SCPL for example three times with different config each time in PanelsUI?


If I understand your question correctly, then yes. You can have multiple SCPL configs for different playlists.

foo_ui_panels

Reply #2181
As for my config.. it's almost done but there's something that keeps me from finishing it; i can't find the way to make a button to activate a specific playlist in the SCP. I'll post the screenshot in the thread for that when i figure that one out.
[/quote]

You might be able to use a button to kick off a foo_run or foo_run_cmd service which runs a command line which uses foo_command_playlist to give the appropriate command.

I want to try that myself, when time permits; let me know if you get anywhere!

 

foo_ui_panels

Reply #2182
As for my config.. it's almost done but there's something that keeps me from finishing it; i can't find the way to make a button to activate a specific playlist in the SCP. I'll post the screenshot in the thread for that when i figure that one out.


Could you use %cwb_activelist% from foo_cwb_hooks somehow? Btw your config does look very nice, from that little screenshot you posted.


Next question.  Is there a way to use SCPL for example three times with different config each time in PanelsUI?


In the code $panel(name,ID,X,Y,W,H,options) I think the 'name' field defines the actual panel configuration.

So you could use $panel(name,Single Column Playlist,X,Y,W,H,options) three times, defining 'name' as something different for each. Playlist1, playlist2, and playlist3, maybe.

Also I think if you want to place 2 seperate panels, with the same configuration, you just make sure that the 'name' field is identical for each one. I do that with track displays on my config.

foo_ui_panels

Reply #2183

As for my config.. it's almost done but there's something that keeps me from finishing it; i can't find the way to make a button to activate a specific playlist in the SCP. I'll post the screenshot in the thread for that when i figure that one out.


Could you use %cwb_activelist% from foo_cwb_hooks somehow? Btw your config does look very nice, from that little screenshot you posted.



Unfortunately that won't work: %cwb_activelist% from foo_cwb_hooks returns the name of the currently active playlist - it will not allow you to change which playlist is active. All the foo_cwb_hooks items give info. only.

foo_ui_panels

Reply #2184
Not sure if this is a bug or not, but the 'effects' dialog for fonts allows you to choose a color for your font. So I choose a color (doesn't matter which one) and then copied the code that was created, but the color of my font wasn't included in the code. Previous $font() codes did include the color, but the new syntax doesn't. Could this be added?

Right now I am using $textcolor() or $rgb() but its just more lines of code .

Everytime I go to paste this code into my track info panel, I get a crash:

Code: [Select]
// Global
$puts(dir2,'C:\Documents and Settings\Owner\Application Data\foobar2000\images\hearts\')
$puts(dir3,'C:\Documents and Settings\Owner\Application Data\foobar2000\kei\rating\')
$puts(dir1,'C:\Program Files\foobar2000\kei\')

$puts(header,$font(Lucida Sans Unicode,6,bold,221-222-223))
$puts(body,$font(Calibri,9,,221-222-223))
$puts(heart.font,$font(Arial Unicode MS,20,,))
$puts(heart.x,5)
$puts(heart.y,10)

$puts(rate.0,$get(*grey)$get(heart.font)$char(9829))
$puts(rate.1,$get(*blue)$get(heart.font)$char(9829))
$puts(rate.2,$get(*purple)$get(heart.font)$char(9829))
$puts(rate.3,$get(*green)$get(heart.font)$char(9829))
$puts(rate.4,$get(*orange)$get(heart.font)$char(9829))
$puts(rate.5,$get(*red)$get(heart.font)$char(9829))
$puts(rate.6,$get(*peach)$get(heart.font)$char(9829))

// PerTrack
$get(header)$upper( -Rating-)
$align(left,left)$get(body)

$textbutton($eval($get(heart.x)+0),$get(heart.y),,,$get(rate.0),$get(rate.0),TAG:SET:rating:0,tooltip,Rate 0)
$textbutton($eval($get(heart.x)+25),$get(heart.y),,,$get(rate.1),$get(rate.1),TAG:SET:rating:1,tooltip,Rate 1)
$textbutton($eval($get(heart.x)+50),$get(heart.y),,,$get(rate.2),$get(rate.2),TAG:SET:rating:2,tooltip,Rate 2)
$textbutton($eval($get(heart.x)+75),$get(heart.y),,,$get(rate.3),$get(rate.3),TAG:SET:rating:3,tooltip,Rate 3)
$textbutton($eval($get(heart.x)+100),$get(heart.y),,,$get(rate.4),$get(rate.4),TAG:SET:rating:4,tooltip,Rate 4)
$textbutton($eval($get(heart.x)+125),$get(heart.y),,,$get(rate.5),$get(rate.5),TAG:SET:rating:5,tooltip,Rate 5)
$textbutton($eval($get(heart.x)+150),$get(heart.y),,,$get(rate.6),$get(rate.6),TAG:SET:rating:6,tooltip,Rate 6)

Here is the crash log:
Code: [Select]
Illegal operation:
Code: C0000005h, flags: 00000000h, address: 04A8CF56h
Access violation, operation: write, address: 055DE000h
Call path:
entry=>app_mainloop
This is the first crash logged by this instance.
Code bytes (04A8CF56h):
04A8CF16h:  41 8B 84 24 08 01 00 00 8D 3C B0 8B 84 24 60 01
04A8CF26h:  00 00 8B CA F3 AB 8B 8C 24 A8 00 00 00 8B 84 24
04A8CF36h:  64 01 00 00 8D 3C B1 8B CA F3 AB 8B 84 24 F4 00
04A8CF46h:  00 00 8D 34 B0 8B 84 24 68 01 00 00 8B CA 8B FE
04A8CF56h:  F3 AB 8D 4C 24 28 51 8D 44 24 1C 8D B4 24 B0 03
04A8CF66h:  00 00 E8 73 4D 00 00 84 C0 0F 85 4B FA FF FF 8B
04A8CF76h:  44 24 44 3B C3 74 11 50 8D 94 24 B0 00 00 00 52
04A8CF86h:  FF 15 3C 44 AD 04 EB 1C 8B 44 24 38 8B 48 18 8B
Stack (0013A6A4h):
0013A684h:  00000001 B8054364 00000016 00000000
0013A694h:  01054238 00000016 00005600 80557800
0013A6A4h:  F4C8A88D 00000000 00000008 0013BC7C
0013A6B4h:  00000000 00000020 0989D774 00000004
0013A6C4h:  00000432 00000000 00000432 EC94E976
0013A6D4h:  0000004F 0989CDD8 055A66E0 00000000
0013A6E4h:  0000003C 0013AC34 0013A7B8 00000010
0013A6F4h:  00000000 7C91056D 055D8478 00000000
0013A704h:  00000018 00000024 0013A7D8 7C910551
0013A714h:  055BD408 7C91056D 00000000 054D1148
0013A724h:  054D1148 004935D8 EC94E92E 00000000
0013A734h:  0000000C 0001CF60 00000018 00000000
0013A744h:  00000004 055BD410 055DAAA8 0000000A
0013A754h:  055C70B0 04B20408 004935B9 00CD0000
0013A764h:  00000000 004935D8 EC94E9EE 00000000
0013A774h:  0000001B 0989D5CC 0013A78C 00000001
0013A784h:  7C9105C8 055B4270 0013A858 7C910551
0013A794h:  055D3B08 055DBDC0 055BD3F3 055B4663
0013A7A4h:  0000003C 00000000 055D9790 05599EB0
0013A7B4h:  FFFFFFFF 0001056D 00000005 0013A71C
Registers:
EAX: 00000018, EBX: 00000000, ECX: 00000070, EDX: 00000432
ESI: 055DD0F8, EDI: 055DE000, EBP: 0989CDD8, ESP: 0013A6A4
Crash location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Symbol: "foobar2000_get_interface" (+0000A486h)

Loaded modules:
foobar2000                      loaded at 00400000h - 00527000h
ntdll                            loaded at 7C900000h - 7C9B0000h
kernel32                        loaded at 7C800000h - 7C8F5000h
COMCTL32                        loaded at 773D0000h - 774D3000h
msvcrt                          loaded at 77C10000h - 77C68000h
ADVAPI32                        loaded at 77DD0000h - 77E6B000h
RPCRT4                          loaded at 77E70000h - 77F01000h
GDI32                            loaded at 77F10000h - 77F57000h
USER32                          loaded at 7E410000h - 7E4A0000h
SHLWAPI                          loaded at 77F60000h - 77FD6000h
SHELL32                          loaded at 7C9C0000h - 7D1D5000h
ole32                            loaded at 774E0000h - 7761D000h
shared                          loaded at 10000000h - 10029000h
comdlg32                        loaded at 763B0000h - 763F9000h
ShimEng                          loaded at 5CB70000h - 5CB96000h
AcGenral                        loaded at 6F880000h - 6FA4A000h
WINMM                            loaded at 76B40000h - 76B6D000h
OLEAUT32                        loaded at 77120000h - 771AC000h
MSACM32                          loaded at 77BE0000h - 77BF5000h
VERSION                          loaded at 77C00000h - 77C08000h
USERENV                          loaded at 769C0000h - 76A73000h
UxTheme                          loaded at 5AD70000h - 5ADA8000h
IMM32                            loaded at 76390000h - 763AD000h
LPK                              loaded at 629C0000h - 629C9000h
USP10                            loaded at 74D90000h - 74DFB000h
wbsys                            loaded at 66500000h - 6650A000h
wbhelp                          loaded at 66600000h - 66617000h
serwvdrv                        loaded at 5CD70000h - 5CD77000h
umdmxfrm                        loaded at 5B0A0000h - 5B0A7000h
wblind                          loaded at 66000000h - 66092000h
msimg32                          loaded at 76380000h - 76385000h
lgscroll                        loaded at 10100000h - 1010E000h
MSVCR71                          loaded at 7C340000h - 7C396000h
MSVCP71                          loaded at 7C3A0000h - 7C41B000h
apphelp                          loaded at 77B40000h - 77B62000h
msctfime                        loaded at 755C0000h - 755EE000h
foo_abx                          loaded at 00F50000h - 00F83000h
foo_albumlist                    loaded at 00FB0000h - 00FF7000h
foo_amipwrapper                  loaded at 01020000h - 0104C000h
foo_audioscrobbler              loaded at 01070000h - 010A7000h
WS2_32                          loaded at 71AB0000h - 71AC7000h
WS2HELP                          loaded at 71AA0000h - 71AA8000h
foo_autoplaylist                loaded at 010D0000h - 01100000h
foo_browser                      loaded at 01120000h - 01159000h
foo_cdda                        loaded at 01180000h - 011B5000h
foo_common                      loaded at 011E0000h - 01213000h
foo_converter                    loaded at 01240000h - 012A9000h
foo_custominfo                  loaded at 012D0000h - 01355000h
foo_cwbowron                    loaded at 01380000h - 013AA000h
gdiplus                          loaded at 4EC50000h - 4EDF3000h
foo_cwb_hooks                    loaded at 013E0000h - 0142D000h
foo_default_videoplayer          loaded at 01450000h - 0145D000h
MSVCR80                          loaded at 78130000h - 781CB000h
foo_dockable_panels              loaded at 01480000h - 014B3000h
foo_dop                          loaded at 014E0000h - 0154C000h
SETUPAPI                        loaded at 77920000h - 77A13000h
foo_dsp_delta                    loaded at 01570000h - 0158E000h
foo_dsp_std                      loaded at 015B0000h - 015F1000h
foo_freedb2                      loaded at 01620000h - 01660000h
foo_ftpput                      loaded at 01680000h - 016FF000h
WINSPOOL                        loaded at 73000000h - 73026000h
WININET                          loaded at 42C10000h - 42CDF000h
Normaliz                        loaded at 01710000h - 01719000h
iertutil                        loaded at 42990000h - 429D5000h
foo_history                      loaded at 01960000h - 0197C000h
foo_input_std                    loaded at 019A0000h - 01AB3000h
foo_lyricsdb                    loaded at 01AE0000h - 01B0F000h
foo_masstag                      loaded at 01B30000h - 01B7F000h
foo_playback_custom              loaded at 01BA0000h - 01BDF000h
foo_playlist_bind                loaded at 01C10000h - 01C35000h
foo_playlist_manager            loaded at 01C50000h - 01C94000h
foo_pqview                      loaded at 01CC0000h - 01CDB000h
foo_preview                      loaded at 01D00000h - 01D21000h
foo_rgscan                      loaded at 01D40000h - 01D88000h
foo_run                          loaded at 01DB0000h - 01DDB000h
foo_runcmd                      loaded at 01E00000h - 01E2F000h
foo_uie_albumart                loaded at 01E50000h - 01E8C000h
foo_uie_albumart_msn            loaded at 01EB0000h - 01ECC000h
foo_uie_lyrics                  loaded at 01EE0000h - 01F44000h
foo_uie_lyrics_panel            loaded at 01F70000h - 01FD9000h
foo_uie_peakmeter                loaded at 02000000h - 02028000h
foo_uie_playlists_dropdown      loaded at 02050000h - 0208C000h
foo_uie_queuemanager            loaded at 020B0000h - 020E9000h
mscoree                          loaded at 79000000h - 79045000h
msvcm80                          loaded at 7C4C0000h - 7C53D000h
mscorwks                        loaded at 79E70000h - 7A3D6000h
mscorlib.ni                      loaded at 790C0000h - 79B90000h
mscorjit                        loaded at 79060000h - 790B3000h
rsaenh                          loaded at 0FFD0000h - 0FFF8000h
System.ni                        loaded at 7A440000h - 7AC06000h
System.Drawing.ni                loaded at 7ADE0000h - 7AF6C000h
foo_uie_quicksearch              loaded at 04850000h - 04896000h
foo_uie_tabs                    loaded at 048A0000h - 048CA000h
foo_uie_typefind                loaded at 048F0000h - 04920000h
foo_uie_vis_egoh                loaded at 04940000h - 0495D000h
foo_ui_columns                  loaded at 04970000h - 04A15000h
foo_ui_panels                    loaded at 04A40000h - 04B07000h
foo_ui_std                      loaded at 04B30000h - 04B87000h
foo_unpack                      loaded at 04BB0000h - 04BDE000h
foo_winamp_spam                  loaded at 04C00000h - 04C30000h
HookDll                          loaded at 10400000h - 10407000h
amip                            loaded at 05770000h - 0592A000h
mswsock                          loaded at 71A50000h - 71A8F000h
hnetcfg                          loaded at 662B0000h - 66308000h
wshtcpip                        loaded at 71A90000h - 71A98000h
WINTRUST                        loaded at 76C30000h - 76C5E000h
CRYPT32                          loaded at 77A80000h - 77B14000h
MSASN1                          loaded at 77B20000h - 77B32000h
IMAGEHLP                        loaded at 76C90000h - 76CB8000h
DNSAPI                          loaded at 76F20000h - 76F47000h
DSOUND                          loaded at 73F10000h - 73F6C000h
wdmaud                          loaded at 72D20000h - 72D29000h
rasadhlp                        loaded at 76FC0000h - 76FC6000h
msacm32                          loaded at 72D10000h - 72D18000h
midimap                          loaded at 77BD0000h - 77BD7000h
KsUser                          loaded at 73EE0000h - 73EE4000h
System.Windows.Forms.ni          loaded at 7AFD0000h - 7BC54000h
netapi32                        loaded at 5B860000h - 5B8B4000h
CLBCATQ                          loaded at 76FD0000h - 7704F000h
COMRes                          loaded at 77050000h - 77115000h
GRA8E1~1                        loaded at 08240000h - 0845D000h
GrooveUtil                      loaded at 68EF0000h - 68FE1000h
GrooveNew                        loaded at 68FF0000h - 68FF7000h
ATL80                            loaded at 7C630000h - 7C64B000h
GR99D3~1                        loaded at 65E30000h - 65E67000h
urlmon                          loaded at 42CF0000h - 42E14000h
Msxml3                          loaded at 74980000h - 74A8E000h
Secur32                          loaded at 77FE0000h - 77FF1000h
winrnr                          loaded at 76FB0000h - 76FB8000h
WLDAP32                          loaded at 76F60000h - 76F8C000h
sensapi                          loaded at 722B0000h - 722B5000h
iphlpapi                        loaded at 76D60000h - 76D79000h
MPRAPI                          loaded at 76D40000h - 76D58000h
ACTIVEDS                        loaded at 77CC0000h - 77CF2000h
adsldpc                          loaded at 76E10000h - 76E35000h
ATL                              loaded at 76B20000h - 76B31000h
rtutils                          loaded at 76E80000h - 76E8E000h
SAMLIB                          loaded at 71BF0000h - 71C03000h
RASAPI32                        loaded at 76EE0000h - 76F1C000h
rasman                          loaded at 76E90000h - 76EA2000h
TAPI32                          loaded at 76EB0000h - 76EDF000h
msv1_0                          loaded at 77C70000h - 77C93000h
xpsp2res                        loaded at 20000000h - 202C5000h
DBGHELP                          loaded at 59A60000h - 59B01000h

Stack dump analysis:
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 004935D8h, location: "foobar2000", loaded at 00400000h - 00527000h
Address: 004935B9h, location: "foobar2000", loaded at 00400000h - 00527000h
Address: 004935D8h, location: "foobar2000", loaded at 00400000h - 00527000h
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C910570h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000133h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 004935D8h, location: "foobar2000", loaded at 00400000h - 00527000h
Address: 7C911538h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "wcsncpy" (+00000AA9h)
Address: 7C911596h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "wcsncpy" (+00000B07h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C9105D4h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 7C911538h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "wcsncpy" (+00000AA9h)
Address: 7C911596h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "wcsncpy" (+00000B07h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C9105D4h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 7C917BB0h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlReAllocateHeap" (+000001B3h)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 004A6FD8h, location: "foobar2000", loaded at 00400000h - 00527000h
Address: 00438CBFh, location: "foobar2000", loaded at 00400000h - 00527000h
Address: 004DEDF8h, location: "foobar2000", loaded at 00400000h - 00527000h
Address: 004C1EE4h, location: "foobar2000", loaded at 00400000h - 00527000h
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 04AB273Fh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 7C9105D4h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 7C910F46h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "wcsncpy" (+000004B7h)
Address: 773E207Bh, location: "COMCTL32", loaded at 773D0000h - 774D3000h
Symbol: "DefSubclassProc" (+00000055h)
Address: 7C9106F0h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000011Ch)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C910570h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000133h)
Address: 04AB0100h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04AB275Eh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04AB24E2h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04ABB0A0h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04AD0536h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04A820D2h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 00470494h, location: "foobar2000", loaded at 00400000h - 00527000h
Address: 04AD8058h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04ADB564h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C9106F0h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000011Ch)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 04AB218Dh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 00470494h, location: "foobar2000", loaded at 00400000h - 00527000h
Address: 04AB277Ch, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04AD058Bh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04A5345Bh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 00470494h, location: "foobar2000", loaded at 00400000h - 00527000h
Address: 7C911538h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "wcsncpy" (+00000AA9h)
Address: 7C911596h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "wcsncpy" (+00000B07h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 00470494h, location: "foobar2000", loaded at 00400000h - 00527000h
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C9106ABh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9105D4h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 04AD8058h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04AD8058h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C9106ABh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C9105D4h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 4ED55B38h, location: "gdiplus", loaded at 4EC50000h - 4EDF3000h
Address: 77F1BB36h, location: "GDI32", loaded at 77F10000h - 77F57000h
Symbol: "StretchBlt" (+00000074h)
Address: 77F1BB1Fh, location: "GDI32", loaded at 77F10000h - 77F57000h
Symbol: "StretchBlt" (+0000005Dh)
Address: 4ED4AF5Ch, location: "gdiplus", loaded at 4EC50000h - 4EDF3000h
Address: 77F1BAC2h, location: "GDI32", loaded at 77F10000h - 77F57000h
Symbol: "StretchBlt" (+00000000h)
Address: 4ED431CCh, location: "gdiplus", loaded at 4EC50000h - 4EDF3000h
Address: 4ECA6FFFh, location: "gdiplus", loaded at 4EC50000h - 4EDF3000h
Address: 4ED43875h, location: "gdiplus", loaded at 4EC50000h - 4EDF3000h
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C910738h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C9106ABh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C910738h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C9106ABh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9105D4h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 7C9106F0h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000011Ch)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C910570h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000133h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 04AB273Fh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04AB275Eh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04ABB0A0h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 7C917E77h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlReAllocateHeap" (+0000047Ah)
Address: 04AB24E2h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 7C917C0Ch, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlReAllocateHeap" (+0000020Fh)
Address: 7C917BF5h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlReAllocateHeap" (+000001F8h)
Address: 7C917BB0h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlReAllocateHeap" (+000001B3h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C9106ABh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C9105D4h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 04ACCCA0h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04A4B0E2h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04A89ADFh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Symbol: "foobar2000_get_interface" (+0000700Fh)
Address: 04A8A14Eh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Symbol: "foobar2000_get_interface" (+0000767Eh)
Address: 4ECBC184h, location: "gdiplus", loaded at 4EC50000h - 4EDF3000h
Address: 4ECA8CB2h, location: "gdiplus", loaded at 4EC50000h - 4EDF3000h
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 04AB218Dh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04AB277Ch, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 04AD8058h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7E41A901h, location: "USER32", loaded at 7E410000h - 7E4A0000h
Symbol: "wsprintfA" (+00000054h)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C917BB8h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlReAllocateHeap" (+000001BBh)
Address: 7C917BB0h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlReAllocateHeap" (+000001B3h)
Address: 04AB2989h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04AB29C0h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04ABB0A0h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04AB29C0h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04A41499h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04ABB0A0h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04AB275Eh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04A9033Fh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Symbol: "foobar2000_get_interface" (+0000D86Fh)
Address: 04A77B9Ch, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04A7A1EDh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 015BDF58h, location: "foo_dsp_std", loaded at 015B0000h - 015F1000h
Address: 00490055h, location: "foobar2000", loaded at 00400000h - 00527000h
Address: 7C917BF5h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlReAllocateHeap" (+000001F8h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C910738h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C9106ABh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C9105D4h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 7C912270h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlInitializeCriticalSection" (+00000743h)
Address: 7C911596h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "wcsncpy" (+00000B07h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C910738h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C9106ABh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C910738h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C9106ABh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C9105D4h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C910738h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C9106ABh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C910738h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C9106ABh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C9105D4h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C910738h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C9106ABh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C917E77h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlReAllocateHeap" (+0000047Ah)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C917BB0h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlReAllocateHeap" (+000001B3h)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C910738h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 77F17012h, location: "GDI32", loaded at 77F10000h - 77F57000h
Symbol: "BitBlt" (+00000089h)
Address: 77F16FFAh, location: "GDI32", loaded at 77F10000h - 77F57000h
Symbol: "BitBlt" (+00000071h)
Address: 2001129Fh, location: "xpsp2res", loaded at 20000000h - 202C5000h
Address: 2001129Fh, location: "xpsp2res", loaded at 20000000h - 202C5000h
Address: 04A5F132h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 2001129Fh, location: "xpsp2res", loaded at 20000000h - 202C5000h
Address: 04A5F13Bh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 04A52F5Ch, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 2001129Fh, location: "xpsp2res", loaded at 20000000h - 202C5000h
Address: 04A56996h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 77F53020h, location: "GDI32", loaded at 77F10000h - 77F57000h
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 04AB218Dh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04AB277Ch, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 2001129Fh, location: "xpsp2res", loaded at 20000000h - 202C5000h
Address: 7C910570h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000133h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 04AB273Fh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04AB275Eh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04ABB0A0h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04AB275Eh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Address: 04A8FF98h, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Symbol: "foobar2000_get_interface" (+0000D4C8h)
Address: 04A8FFCDh, location: "foo_ui_panels", loaded at 04A40000h - 04B07000h
Symbol: "foobar2000_get_interface" (+0000D4FDh)
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "strchr" (+00000117h)
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B0000h
Symbol: "RtlFreeHeap" (+00000130h)

Version info:
foobar2000 v0.9.4.3
UNICODE

Additional info:
Egoh Spectrum analyser (uie) 1.1.2  (foo_uie_vis_egoh)
Lyric Show Panels 0.3.1.1b7 [Jul 13 2007 - 12:34:08]  (foo_uie_lyrics)
Playlist Manager 1.0.2  (foo_playlist_manager)
Startup Actions 0.0.2 [Jul 23 2007 - 08:27:55]  (foo_cwbowron)
cwbowron's title format hooks 1.2.5 [Jun  8 2007 - 08:49:42]  (foo_cwb_hooks)
ZIP/GZIP reader 1.0  (foo_unpack)
FLAC Decoder 1.1.0  (foo_input_std)
WMA Decoder 1.1  (foo_input_std)
Standard Input Array 1.0  (foo_input_std)
Default video player 0.1.3  (foo_default_videoplayer)
freedb Tagger 0.5.2a  (foo_freedb2)
Album Art Panel Mod (MSN) 0.2.1_8  (foo_uie_albumart_msn)
Masstagger 1.6  (foo_masstag)
Tabbed panel modified 0.2.5  (foo_uie_tabs)
iPod manager 0.4.3 TEST  (foo_dop)
Queue manager panel 0.2.3  (foo_uie_queuemanager)
AMIP Wrapper 0.90  (foo_amipwrapper)
Winamp API Emulator 0.96  (foo_winamp_spam)
LPCM <--> delta-PCM converter 0.1.1  (foo_dsp_delta)
foo_lyricsdb 0.0.7 beta 5  (foo_lyricsdb)
Preview 1.2  (foo_preview)
foo_custominfo 0.1.2  (foo_custominfo)
Album List 3.2.0  (foo_albumlist)
ReplayGain Scanner 2.0.2  (foo_rgscan)
Panels UI 0.14.12 beta [Jul 18 2007 - 13:39:30]  (foo_ui_panels)
FTP Uploader 0.4.9  (foo_ftpput)
Converter 1.0.1  (foo_converter)
Common services 0.1  (foo_common)
Audioscrobbler 1.3.6  (foo_audioscrobbler)
Typefind 0.2 beta 1  (foo_uie_typefind)
RAR reader 1.1  (foo_unpack)
Music Browser 1.2.3b [Mar 23 2007 - 16:52:56]  (foo_browser)
Playback Statistics Custom 1.2.1  (foo_playback_custom)
Album Art Browser 0.0.5 [Jul 23 2007 - 08:27:55]  (foo_cwbowron)
Tagger Panel Window 1.0.5 [Jun 12 2007 - 15:14:00]  (foo_cwb_hooks)
Playlists Dropdown 0.6 alpha 3  (foo_uie_playlists_dropdown)
Run Command 1.0 beta 2  (foo_runcmd)
Columns UI 0.2.0 alpha 3  (foo_ui_columns)
Quick Search Toolbar 2.8k  (foo_uie_quicksearch)
Peakmeter Panel 0.0.3.1  (foo_uie_peakmeter)
CD Audio Decoder 2.1.1  (foo_cdda)
Autoplaylist Manager 1.0  (foo_autoplaylist)
Run services 0.3.2  (foo_run)
Standard DSP array 1.0  (foo_dsp_std)
foobar2000 core 0.9.4.3  (Core)
Lyrics panel 0.35  (foo_uie_lyrics_panel)
Dockable Panels 1.0.7b [Mar 28 2007 - 09:18:48]  (foo_dockable_panels)
History 0.2  (foo_history)
Default User Interface 0.9acc  (foo_ui_std)
ABX Comparator 1.3.1  (foo_abx)
Playlist Bind 3.1  (foo_playlist_bind)
Album Art Panel 0.2.6  (foo_uie_albumart)

Song List: keikoniumboards.ke.funpic.org/files/songlist.html

foo_ui_panels

Reply #2185
Terrestrial: I don't know if it had been reported but I found this:

When I hover a button (pause in this example) and then I get the cursor out of the button area, the text underneath the button disapears.

The button is a PNG with transparency. You can see the X and Y position where the button starts; where the text underneath it disapears.



see example here:




Try putting the text after the button code in your PUI.

i.e.
$button(blah blah)
%title% etc.

instead of:

i.e.
%title% etc.
$button(blah blah)

foo_ui_panels

Reply #2186
I don't know what is wrong but ui panels today make 1Gb swap file (!!) and foo don't run... I redinstall but this dont help....

foo_ui_panels

Reply #2187
I thought I could do it with CWB Hooks but i've tried it before and yes, it only gives information. That's a command that I need.

I can't believe this can't be done. There's nothing more natural that having a button to load a specific playlist in SCP, right?

Using the Playlist Menu kind of ruins the look of everything.



Try putting the text after the button code in your PUI.




It won't work as the text is in //PerSecond and the buttons have to be in //PerTrack.

foo_ui_panels

Reply #2188
Hi, after a big month of absence, i am now using last beta test... all is working great after some little code change, but still using old syntax.

I just wanted to know if the "CONTEXT-SELECTED" option has gone... because for me it is not working anymore when multiple files are selected.
I have read from page 68 to 88, and did not notice any report of that.

Thx for your reply.
Cheers

foo_ui_panels

Reply #2189
I thought I could do it with CWB Hooks but i've tried it before and yes, it only gives information. That's a command that I need.

I can't believe this can't be done. There's nothing more natural that having a button to load a specific playlist in SCP, right?

Using the Playlist Menu kind of ruins the look of everything.


I'm pretty sure each SCPL remembers the playlist associated with it. So, how about:

make another panel (i.e.: a new panel-id),

use a button to set a PVAR,

draw the appropriate panel (old or new) based on the PVAR,

when the new panel is open choose the desired playlist in it:

every time that panel is drawn it displays the appropriate panel!

foo_ui_panels

Reply #2190
Hmm.
Terrestial hasn't visited these forums for about a week. I wonder what could be the reason for that.

On another note, I seem to be having memory leaks. Or something like that.
After a couple of days of working without shutdown (playback may be stopped or paused repeatedly during that time, the window - minimized and restored), on yet another automatic track change during usual playback the interface becomes glitchy and sort of unresponsive. A copy of "background drawing" of the interface appears to the left of the player. Any attempt to enter track properties hangs foobar. But if I just exit it and launch it again, everything becomes right for another day or two.
Panels UI 0.14.12, using old syntax. And this started happening only recently (3 or 4 times already).

foo_ui_panels

Reply #2191
here's the problem:

if i select ac/dc in my albums panel, it looks like this, because the files from blow up your video arent in the correct order.
but the albums should be also sorted in date, but this isnt so.

image #1:


after making a right click and select artist/date/album, it looks like this:



now blow up your video is in correct order and the cd's are orderd after year.
aritst/date/album had already a check before i clicked on it.


what is wrong?

he always display just the folder-ordering

seeya

dennis


ps: sry for my bad english

foo_ui_panels

Reply #2192
Hello,

I've been searching for a few days about how to refresh foobar to recheck folder locations for newly aquired album art/artist art. In previous versions of PanelsUI, I used to go to settings, type some random letters, delete them, and finally press OK. This worked perfectly, but now that doesn't work 

How do I go about doing this?

Thank you!! 

foo_ui_panels

Reply #2193
Mundschuss, you're selecting the tracks from your albumlist/library filter so the initial sort will be determined by those and not SCPL. That's what I've found anyway. Check what your sort code is in those components.

foo_ui_panels

Reply #2194
I donlt know if this has been brought up already, but in SCPL, the only way to arrange tracks is to hold alt, then drag and drop. This is really annoying and kind of odd. Is there any plans to redesign this feature? I'm using foobar and panels_ui under wine in Linux, and the alt-drag method doesn't even work, as gnome and KDE both have alt-drag reserved for moving the window.

foo_ui_panels

Reply #2195
I donlt know if this has been brought up already, but in SCPL, the only way to arrange tracks is to hold alt, then drag and drop. This is really annoying and kind of odd. Is there any plans to redesign this feature? I'm using foobar and panels_ui under wine in Linux, and the alt-drag method doesn't even work, as gnome and KDE both have alt-drag reserved for moving the window.


What version of Panels are you using? In the latest betas you can drag and drop by first selecting the track/tracks and letting go of the mouse button. Then click on the selection and drag as you wish.

foo_ui_panels

Reply #2196
Quick question.  I have some some searching but couldnt find what I am after.  I am using the library filter and am trying to write code to handle albums with multiple discs.. this is what I am trying to achieve

When the discnumber tag exists I want this to happen

album->- disc 1 ->-track 1
                          -track 2
                          -track 3
           
            - disc 2 ->-track 1
                          -track 2
                          -track 3

when it doesnt exist i want this to happen

album->-track 1
            -track 2
            -track 3

The code i have works except for one problem.. the problem is that when the album doesnt have multiple discs a blank tree opens up.  The code i am using is

Code: [Select]
//header
Albums

//tree1
$ifequal(
$get(isSingle),1,! Singles,
%album%
)

//tree2
$if(%discnumber%,
[Disc %discnumber%],
[%discnumber%. ][%tracknumber% - ]%title%
)

//tree3
$if(%discnumber%,
[%discnumber%. ][%tracknumber% - ]%title%,
)


the reason i have written my code like this is because it pushes the empty tree to the bottom of the list.  Is there something i can put in the else part of the if in tree3 that will make the library ignore that tree and hence not expand nothing?

can i make tree 3 look like
$if(%discnumber%,
[%discnumber%. ][%tracknumber% - ]%title%,
IGNORE THIS TREE STATEMENT)

foo_ui_panels

Reply #2197
Mundschuss, you're selecting the tracks from your albumlist/library filter so the initial sort will be determined by those and not SCPL. That's what I've found anyway. Check what your sort code is in those components.


mhh, in the Album List Panel you can't select how he has to send the files to the playlist. 

in columns UI / playlist switcher / drag&drop i have:
%artist%
%album%
%date%
%tracknumber%


but if i change this, it takes no effect. how can i sort the playlist and why has panels_ui a sorting function that only works, if you click on it?


seeya

foo_ui_panels

Reply #2198
[...]
Code: [Select]
// PerTrack

[...]

// buttons
$button2(440,$eval(%_height%-80),0,0,100,30,
    '$font(Arial,10,,255-255-255) Library',
    '$font(Arial,10,,255-0-0) Library',
    PVAR:SET:mem2:$ifgreater($getpvar(mem2),0,0,1),
    )


...the button is displayed fine, but the hot-spot area is too large, so having tried changing it to this...

Code: [Select]
// PerTrack

[...]

// buttons
$button2(440,$eval(%_height%-80),0,0,$calcwidth(Library),$calcheight(Library),
    '$font(Arial,10,,255-255-255) Library',
    '$font(Arial,10,,255-0-0) Library',
    PVAR:SET:mem2:$ifgreater($getpvar(mem2),0,0,1),
    )


... the button is no longer displayed. There is still a hotspot area there, because when I move my mouse over where the button should be I get the little caption 'PVAR:SET:mem2:1' (not the button hover text).

[...]

Thanks alot, mac

Well, the only thing that I noticed that was different was the addition of the $calcheight and $calcwidth functions, so the problem must be with them.  Maybe you have to define the font before (or possibly inside of) these functions?  Maybe the font size is set to 8 before the $button2 command, so it sets the box for the text based on that, and then the size 10 font can't fit in so it doesn't display?  Just speculating...

[...]
When the discnumber tag exists I want this to happen

album->- disc 1 ->-track 1
                          -track 2
                          -track 3
           
            - disc 2 ->-track 1
                          -track 2
                          -track 3

when it doesnt exist i want this to happen

album->-track 1
            -track 2
            -track 3
[...]


I've tried to do a similar sort of thing with multiiple artist tracks, so it would show the first artist, then the second, and so on untill there wasnt a "next" artist.  I couldn't find a way to do it.  It seems to be just one of the limitations of the Library filter now.  You could, of course, use something like %album% - %discnumber% as your criteria, so that each separate disc of the same album would be treated sort of like a separate album.

P.S. Don't read too much into these things, terrestrial may well just be on vacation, or taking a brief vacation from us, lord knows we can be a handfull

foo_ui_panels

Reply #2199

Mundschuss, you're selecting the tracks from your albumlist/library filter so the initial sort will be determined by those and not SCPL. That's what I've found anyway. Check what your sort code is in those components.


mhh, in the Album List Panel you can't select how he has to send the files to the playlist. 

in columns UI / playlist switcher / drag&drop i have:
%artist%
%album%
%date%
%tracknumber%


but if i change this, it takes no effect. how can i sort the playlist and why has panels_ui a sorting function that only works, if you click on it?


seeya



I just remembered how I resolved the issue I was having. It was because of the sort code I had in my Preferences.

Go to Preferences - General and see what sort code you have for 'Sort incoming files by'. Edit it accordingly and I think that may resolve your issue.