| Home Drop Shadow Filter Blur Filter Glow Filter Bevel Effect Bonus Effects |
|
Bevel effect is the new way of creating a 3 dimension impression effect on almost any object in Flash 8, by using the BevelFilter. The parameters of this filter are almost the same as in the Drop Shadow, so read more information about them in that section of the website. The parameters in the right order are: AS: [name].distance AS: [name].angle AS: [name].highlightColor; AS: [name].highlightAlpha; AS: [name].shadowColor; AS: [name].shadowAlpha; AS: [name].blurX; AS: [name].blurY; AS: [name].strength; AS: [name].quality; AS: [name].knockout; AS: [name].type;
The Action Script code from our example looks like this: import flash.filters.BevelFilter; d=2; ang=45; hc=0x0000FF; ha=1; sc=0x000000; sa=1; blur_X=2; blur_Y=2; s=1; q=1; t="outter"; k=false; var filter:BevelFilter = new BevelFilter(d,ang,hc,ha,sc,sa,color,blur_X,blur_Y,s,q,t,k); var filterss:Array = new Array(); filterss.push(filter); r.filters = filterss; 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.