Trigger animation on audio track change?
#1
Within a custom fullscreen music window, I'd like to trigger an animation when the track changes (e.g. album cover exits left, next cover enters from the right). I don't think there's a boolean condition for this player state that I can use... Can anyone think of a way I can do it?

Cheers!
theDeadman
Bitcoin donations: 1Hvo9rWzhAVbuPrshgaGZaD7qcLFTCPuiv
[Skin] Pellucid
[Skin] Maximinimalism
Reply
#2
if its in a Custom window you could try "Container(id).OnNext"

Or simply use a fixed or wraplist and reduce the scrollspeed. guess this could do the trick.

(** Untested! **)

Or maybe use "Player.Time" to compare.
Reply
#3
IntegerGreaterThan + Player.TimeRemaining / Player.Time
Reply
#4
Nice one - thanks both
Bitcoin donations: 1Hvo9rWzhAVbuPrshgaGZaD7qcLFTCPuiv
[Skin] Pellucid
[Skin] Maximinimalism
Reply
#5
For anyone else out there wanting to do something similar, this works well:

Code:
<animation type="conditional" condition="StringCompare(MusicPlayer.Time,00:00)">
    [..]
</animation>
Bitcoin donations: 1Hvo9rWzhAVbuPrshgaGZaD7qcLFTCPuiv
[Skin] Pellucid
[Skin] Maximinimalism
Reply

Logout Mark Read Team Forum Stats Members Help
Trigger animation on audio track change?0