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

From Hydrogenaudio Knowledgebase
No edit summary
mNo edit summary
Line 4: Line 4:
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=33450 Azrael]
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=33450 Azrael]
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=31509 Navigator]
* [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.
=== Examples ===
{| border=1 cellspacing=0
! 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
| <nowiki>$puts(anisep,$select($add($mod(%playback_time_seconds%,4),1),| , ∕ ,─, \ ,))</nowiki>
|}
=== Text ===
=== Additional Reading ===
* [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 06:29, 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.

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 $puts(anisep,$select($add($mod(%playback_time_seconds%,4),1),| , ∕ ,─, \ ,))

Text

Additional Reading