First ,
we have to import the flash filter
import flash.filters.DropShadowFilter;
Now create a runtime Movieclip as
let we create a box make a sixe of x and y as 50
here the code:
this.createEmptyMovieClip('Box',2)
with (Box)
{
beginFill(0x000000, 100);
moveTo(0, 0);
lineTo(100, 0);
lineTo(100, 100);
lineTo(0, 100);
lineTo(0, 0);
endFill();
}
Box._x = 50
Box._y = 100
and then
in that EnterFrame we have to give the value.. and call the variable
and make values as Dynamic text
Here the code as,
Box.onEnterFrame = function()
{
ds.quality++
Box.filters = [ds]
_root.reson.text = ' For Box : The Drop Shadow option Distance = 2, Angle = 45 degree , Color = 0x66FF33, Alpha = 1, Blur X = 5 Blur Y = 5 Strength = 2 , Qulaity = 3 Inner = false, Knock-out = false, HideObject = false';
}
var ds = new DropShadowFilter (2,45,0x66FF33,0.8,5,5,2,3,false,false,false);
Have a joy with Filter....
Thanxs!....
Tuesday, January 8, 2008
-
Lifecycle Methods componentWillMount is executed before rendering, on both the server and the client side. componentDidMount i...
-
Progress Bar with jQuery, HTML, CSS3 by using Navigation Timing API which provides data that can be used to measure the performance of a ...
-
Section 1. Querying data This section helps you learn how to query data from the SQL Server database. We will start with a simple query tha...
-
Compar : ReactJS vs AngularJS Choosing the right framework for a new JavaScript system, application or website is a top priority for an...
-
R eact is a front-end library developed by Facebook. It is used for handling the view layer for web and mobile apps. ReactJS allows u...
0 comments:
Post a Comment