Answered
best method for adjusting a movie clips brightness?
Can someone share their method for adjusting the brightness of a Movie Clip? With code of course : )
thanks!
Can someone share their method for adjusting the brightness of a Movie Clip? With code of course : )
thanks!
under AS3 you can do this using the 'brightness' property of the Color class, as in:
import fl.motion.Color;
var color = new Color();
color.brightness = 0.5;
myMC.transform.colorTransform = color;
(ps. the range is from -1.0 to 1.0 negative being 'darken', positve being 'lighten')
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.