If you are using this effect on the timeline you can easily set the parameters in the component inspector inside of Flash 8, Flash CS3 or Flash CS4 (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, duration:Number, randomSeed:Number, refreshFrame:Boolean |
MovieClip the transition will apply to Time in frames the trasition will take Random Seed to generate the drips If true, the filter will redraw every frame (i.e. for video) |
| removeFilter() | none | Remove the filter from stage |
Example:
| // create effect instance var effect:BurningPaperEffectAS3 = new BurningPaperEffectAS3(); // init with parameter effect.init(img01_mc, 150, 12, false); // add to stage addChild(effect); // add callback listener effect.addEventListener(BurningPaperEffectAS3.ANIMATION_DONE, _animationDone); // callback function function _animationDone(e:Event):void { trace("animationDone"); } |
The example files delivered with the filter contain ActionScript examples.