Actionscript Snippets: Color an MC using lmc_tween.as libraries

Snippet Name: Coloring MCs using tween libraries
Submitted By: Mark
Description: This piece of code can be used to create color tweens. For example, you can tint a red square to a green in x seconds. It requires downloading tween prototypes from here :http://laco.wz.cz/tween/?page=download

Snippet

#include "lmc_tween.as" //including the libraries
someColor ="0x333366";
secondsToFinish = 3;
myMovieClip.colorTo(someColor,secondsToFinish)