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...
-
make text unselectable CSS Code 1 2 3 4 -webkit-user-select: none; /* Safari */ -moz-user-select: none; /* Firefox */ -ms-user-sele...
-
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...
-
The difference between deep copy and shallow copy lies in how they create and handle copies of objects or data structures: Shallow Copy: A...
-
A rchitecture of React Native Pre-Requisites 1. Hardware requirements RAM : 8 GB (If you are going to use the emulator on your machine)...








0 comments:
Post a Comment