Tinted rotate – Apple LiveType 2 User Manual
Page 141

Appendix B
Creating and Editing EffectScripts
141
Tinted Rotate
EffectScript 1.0
--------------------------------------------------------------------
-- "Tinted Rotate" example
Name "Tinted Rotate"
Desc "Rotate each glyph around its anchor point at 1 rev/sec. For fun,
simultaneously mess around with the color"
DefOffset 0 % Start
DefSequence 0 0 L
DefRandStart 1 100 %
-- note large loopCount so that it will loop through the whole duration.
DefLoop 9999
DefSpeed 100
Time 0
Color 255 0 0 -- Tint Red (R=255, G=0, B=0)
Rotate 0
Time 1
Color 0 255 0 -- Tint Green (R=0, G=255, B=0)
Rotate 120
Time 2
Color 0 0 255 -- Tint Blur (R=0, G=0, B=255)
Rotate 240
Time 3
Color 255 0 0 -- Tint Red (R=255, G=0, B=0)
Rotate 0
--------------------------------------------------------------------