If you are using this effect on the timeline you can easily set the parameters in the component inspector inside of Flash 8 or Flash CS3 (what is a component inspector?).
To see what results you get from changing any of these options please click Try Yourself and play around with the seetings.

Below the methods for this effect.
| Method | Parameter | Description |
|---|---|---|
| init() | start_mc:MovieClip, end_mc:MovieClip, duration:Number, fuzz:Number |
See underneath how to use the init method |
| removeFilter() | none | Stops the generated animation and sets the TargetMovieClip visible |
Example:
| // attach filter on stage var tvFilter:MovieClip = this.attachMovie("TvFuzzEffectAS2", "TvFuzzEffectAS2", 1); // init the filter with parameter tvFilter.init(img1_mc, img2_mc, 50, 1); // set a listener to get an event when the transition in done var eventListener = new Object(); eventListener.onComplete = function(){ trace("transition done"); } tvFilter.addEventListener("onComplete",eventListener); |
The example files delivered with the filter contain ActionScript examples.