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
-
Code Back ground image fit 1 2 3 4 5 6 body { background-image: url(images/mybackground.svg); background-size: cover; ...
-
A rchitecture of React Native Pre-Requisites 1. Hardware requirements RAM : 8 GB (If you are going to use the emulator on your machine)...
-
Progress Bar with jQuery, HTML, CSS3 by using Navigation Timing API which provides data that can be used to measure the performance of a ...
-
In Angular, both observables and promises are used for handling asynchronous operations. They provide a way to work with asynchronous data...








0 comments:
Post a Comment