HydrogenAudio

Hosted Forums => foobar2000 => General - (fb2k) => Topic started by: arfett on 2009-11-02 08:58:53

Title: What is the pattern for the "Playing" column?
Post by: arfett on 2009-11-02 08:58:53
(http://img4.imageshack.us/img4/5807/capturecsl.jpg) (http://img4.imageshack.us/i/capturecsl.jpg/)

Does anyone know what the pattern is for this column so I can put that little playing arrow in a column with a different name?



Thanks in advance!
Title: What is the pattern for the "Playing" column?
Post by: shakey_snake on 2009-11-02 11:18:29
There is no pattern. Hardcoded columns are not necessarily made using title formatting.
Title: What is the pattern for the "Playing" column?
Post by: 2E7AH on 2009-11-02 18:28:16
Does anyone know what the pattern is for this column so I can put that little playing arrow in a column with a different name?

Code: [Select]
$if(%ispaused%,||,$if(%isplaying%,>))
Title: What is the pattern for the "Playing" column?
Post by: chiwou on 2009-11-02 19:39:55
here is a real playback pointer

Code: [Select]
$if(%isplaying%,$char(9654))
Title: What is the pattern for the "Playing" column?
Post by: arfett on 2009-11-02 21:39:04
Thanks broceratops.  I combined what both of you have done and now I just need to find a better pause symbol because the two pipes looks kind of retarded.  If you guys know the char code for a good pause symbol please PIF.
Title: What is the pattern for the "Playing" column?
Post by: chiwou on 2009-11-02 21:59:02
wiki is always a good start
http://wiki.hydrogenaudio.org/index.php?ti...#.24char.28x.29 (http://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Titleformat_Reference#.24char.28x.29)
Title: What is the pattern for the "Playing" column?
Post by: arfett on 2009-11-09 10:19:02
In case anyone else was looking for a solution to this as well this is what I ended up with:

Paused
(http://img121.imageshack.us/img121/9913/paused.jpg)

Playing
(http://img36.imageshack.us/img36/4580/playing.jpg)


$if(%ispaused%,$char(9655),$if(%isplaying%,$char(9654)))