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: What is the pattern for the "Playing" column? (Read 4793 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

What is the pattern for the "Playing" column?



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!

What is the pattern for the "Playing" column?

Reply #1
There is no pattern. Hardcoded columns are not necessarily made using title formatting.
elevatorladylevitateme

What is the pattern for the "Playing" column?

Reply #2
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%,>))

What is the pattern for the "Playing" column?

Reply #3
here is a real playback pointer

Code: [Select]
$if(%isplaying%,$char(9654))

What is the pattern for the "Playing" column?

Reply #4
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.


 

What is the pattern for the "Playing" column?

Reply #6
In case anyone else was looking for a solution to this as well this is what I ended up with:

Paused


Playing



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