Action Script 3 to 2

Hi, can I rewrite AC3 script in AC2?

import com.kenefick.color.*

// Create a drawing board for these fractals…
var bData:BitmapData = new BitmapData( 800,280, false, 0x0 );
var bmp:Bitmap = new Bitmap( bData );
addChild( bmp );

// Setup The Fractal
var fract = new fractal( bData, this );

fractal_input.init(fract, stage);
fractal_effects.init(fract);

fract.newFractal( 3 /* initial points /,
20 /
catch-up speed /,
true /
use color shifting */);
fract.start();

thanks