Core tip: in some of the title animation we often see a very bright blur to clear the effect of animation, very visual impact.
In some of the title animation we often see a very bright blur to clear the effect of animation, very visual impact. High-quality fuzzy effect is mostly used Photoshop to import flash, and then use as script function to achieve blurred picture blur change effect, the effect is very good.
First use Photoshop to make two pictures. A clear, fuzzy (Gaussian blur filter that can be used with Photoshop).
To import two pictures into flash, create three layers, in order: Clear picture (bottom), blurred picture (in the middle), the top is as. The most important point: select the blurred picture. Press F8 to convert it to MovieClip and name the instance name blurred on the property panel.
Add the following code to the as code layer:
var mycolor:color = new Color (blurred);
var white:object = {ra:100, rb:255, ga:100, gb:255, ba:100, bb:255, aa:100, ab:255};
Mycolor.settransform (white);
SetC ();
function SetC () {
Onenterframe = function () {
white.rb-=5;
white.gb-=5;
white.bb-=5;
white.ab-=5;
Mycolor.settransform (white);
}
}
Press Ctrl+enter Test