Difference between revisions of "Foobar2000:Preferences:Columns UI/Appearance"

From Hydrogenaudio Knowledgebase
Jump to: navigation, search
 
m (Appearance moved to Foobar2000:Preferences:Columns UI/Appearance: Needs to be in foobar name space and shown to belong to columnUI)
(3 intermediate revisions by one user not shown)
Line 1: Line 1:
 
This is really a Columns UI kinda thing...
 
This is really a Columns UI kinda thing...
  
* Azrael [http://www.hydrogenaudio.org/forums/index.php?showtopic=33450]
+
Public Columns UI setups
 +
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=33450 Azrael]
 +
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=31509 Navigator]
 +
 
 +
 
 +
== Now Playing Animations ==
 +
These are strings that use %playback_time_seconds% ''(%_time_elapsed_seconds%)'' to do some work.
 +
 
 +
''Note: The following may not view correctly because of wiki formatting and user fonts.''
 +
 
 +
=== Examples ===
 +
{| border=1 cellspacing=0
 +
! colspan=2 align="center" | Color
 +
|-
 +
| Fade to a new color
 +
| $blend($rgb(0,0,0),$rgb(255,255,255),%playback_time_seconds%,%length_seconds%)
 +
|-
 +
| Rotate between different levels of blue
 +
| $blend($rgb(0,0,255),$rgb(255,255,255),$mod(%playback_time_seconds%,5),16))
 +
|-
 +
! colspan=2 align="center" | Text
 +
|-
 +
| Basic
 +
| <nowiki>$select($add($mod(%playback_time_seconds%,4),1),
 +
| , ∕ ,─, \)
 +
</nowiki>
 +
|}
 +
=== Text ===
 +
{| cellspacing=0 border=1 style="background-color:#EEF"
 +
|'/////','\\\\','///','\\','/','\\','///','\\\\'
 +
|-
 +
|●••••,•●•••,••●••,•••●•,••••●,•••●•,••●••,•●•••
 +
|-
 +
|●••••,●●•••,●●●••,●●●●•,●●●●●,•●●●●,••●●●,•••●●,••••●,•••••[http://www.hydrogenaudio.org/forums/index.php?s=&showtopic=43670&view=findpost&p=384042]
 +
|-
 +
|▓████,▓▓███,▓▓▓██,▓▓▓▓█,▓▓▓▓▓,█▓▓▓▓,██▓▓▓,███▓▓,████▓,█████[http://www.hydrogenaudio.org/forums/index.php?s=&showtopic=43670&view=findpost&p=384105]
 +
|-
 +
|♪♬♩♫,♫♪♬♩,♩♫♪♬,♬♩♫♪[http://www.hydrogenaudio.org/forums/index.php?s=&showtopic=43670&view=findpost&p=384126]
 +
|}
 +
'''Usage:''' replace the $mod parameter by the number of frames, and $select with a row of the table. Some animations will only work with certain fonts, some can be improved by changing fonts.
 +
''Note: We add 1 to the $mod because $select counts from 1 while $mod counts from 0.''
 +
 
 +
=== Additional Reading ===
 +
* [[Foobar2000:Titleformat_Reference|Titleformat Reference]]
 +
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=43670 Forum] Discussion Thread
 +
* [http://tagz.brother-john.net/create_animation.html Adding Now Playing Animation] by Brother John

Revision as of 07:08, 11 May 2006

This is really a Columns UI kinda thing...

Public Columns UI setups


Now Playing Animations

These are strings that use %playback_time_seconds% (%_time_elapsed_seconds%) to do some work.

Note: The following may not view correctly because of wiki formatting and user fonts.

Examples

Color
Fade to a new color $blend($rgb(0,0,0),$rgb(255,255,255),%playback_time_seconds%,%length_seconds%)
Rotate between different levels of blue $blend($rgb(0,0,255),$rgb(255,255,255),$mod(%playback_time_seconds%,5),16))
Text
Basic $select($add($mod(%playback_time_seconds%,4),1), | , ∕ ,─, \)

Text

'/////','\\\\','///','\\','/','\\','///','\\\\'
●••••,•●•••,••●••,•••●•,••••●,•••●•,••●••,•●•••
●••••,●●•••,●●●••,●●●●•,●●●●●,•●●●●,••●●●,•••●●,••••●,•••••[1]
▓████,▓▓███,▓▓▓██,▓▓▓▓█,▓▓▓▓▓,█▓▓▓▓,██▓▓▓,███▓▓,████▓,█████[2]
♪♬♩♫,♫♪♬♩,♩♫♪♬,♬♩♫♪[3]

Usage: replace the $mod parameter by the number of frames, and $select with a row of the table. Some animations will only work with certain fonts, some can be improved by changing fonts. Note: We add 1 to the $mod because $select counts from 1 while $mod counts from 0.

Additional Reading