import.glow
import.glow
- Started
- Last post
- 5 Responses
- colour
hi
trying to add a glow filter to a movieclip by code (AS2) in flash. can any help me cos i'm lost
thanks
- colour0
anyone ?
- zarkonite0
import flash.filters.GlowFilter;
var gf:GlowFilter = new GlowFilter(0xffffff, 50, 8, 8, 2, 15, false, false);
movie.filters = [gf]
you can go to adobe docs to know what all the parameters of the glow filter are...
- jsaul0
yourMovieClipTarget.filters = [gf]