View Full Version : Making objects glow/flicker
flawlesstwins
01-06-2007, 12:06 AM
Hi,
Does anyone know the actionscript to make objects (circle) glow and flicker?
Well, this is an old glow rollOver script I used to use.
I think it might be depreciated now, but it will still work.
You would have to better describe what you mean by "flicker" if you want help there.
myMC.onRollOver = function () {
var myGlowFilter = new flash.filters.GlowFilter(0xFFFF00, 100, 10, 10);
var myFilters:Array = this.filters;
myFilters.push(myGlowFilter);
this.filters = myFilters;
}
myMC.onRollOut = function () {
this.filters = myFilters;
delete this.myGlowFilter
}
vBulletin® v3.7.1, Copyright ©2000-2009, Jelsoft Enterprises Ltd.