| Home Drop Shadow Filter Blur Filter Glow Filter Bevel Effect Bonus Effects |
|
The Glow effect can be easily created in Flash 8 with the of the GlowFiltre class. In the earlier versions of Flash, this effect was very hard to implement, and almost impossible without the aid of other picture process programs. But now you can apply this filter to almost all the objects, that's why the flower is so happy. The parameters that will help customize the glow effect are: AS: [name].color AS: [name].alpha; AS: [name].blurX; AS: [name].blurY; AS: [name].strength; AS: [name].quality; AS: [name].inner; AS: [name].knockout;
Now the Action Script version. The parameters must be added in the same order as they were presented above. import flash.filters.GlowFilter; color=0xFFFF00; alpha=20; blur_X=25; blur_Y=25; s=2; q=2; ig=false; k=false; var filter:GlowFilter = new GlowFilter(color,alpha,blur_X,blur_Y,s,q,ig,k); var filterss:Array = new Array(); filterss.push(filter); r.filters = filterss; trace(filter.alpha); To learn more about how to add, change or delete a filter, go to the Drop Shadow Filter page. |
| WebArticles Flash Filter Tutorials - Copyright © 2007 Sorin Carp |
FlashFilterEffects.WebArticles.Org is not affiliated with Adobe Systems, Inc. Flash is a registered trademark of Adobe Systems Incorporated in the United States and/or other countries. The purpose of this website is to provide information regarding Flash filter effects.