2
Table Of Contents
- LiveType User Manual
- Contents
- An Introduction to LiveType
- The LiveType Interface
- Setting Up a Project
- Adding a Background
- Working With Tracks
- Working With Text
- Working With Objects, Textures, and Imported Elements
- Working With Effects and Keyframe Animation
- Previewing and Fully Rendering Your Titling Movie
- Advanced Design Techniques
- Solutions to Common Problems and Customer Support
- Creating and Editing EffectScripts
- Glossary
- Index
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
--------------------------------------------------------------------










