sarala
05-15-2001, 06:57 AM
could you tell me how to create a ray of light effect without using a lot of actionscripting?
Strok
05-15-2001, 11:57 PM
You can build it by using a lot of masks
or easy by using actionscript:
Lets say you have a moving MC with instance name xxx
for (i=0;i<30;i++)
{
zzz = ('xxx' add i);
duplicateMovieClip ( 'xxx', zzz, i );
setProperty ( zzz, _alpha, 15-i/2 );
setProperty ( zzz, _xscale, 100+i*4 );
setProperty ( zzz, _yscale, 100+i*10 );
}
just put this script on the same timeline with a MC (xxx)
sarala
06-10-2001, 01:44 PM
thanks very much for the solution. but i want the text to be stationary and only the light should move.
vBulletin® v3.8.5, Copyright ©2000-2013, Jelsoft Enterprises Ltd.