as3 to as2

Hi,
Can anyone convert the following as3 to as2?

package
{
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.text.TextField;

import net.dmclaren.text.MultiTextFieldWrapper;

public class MultiColumnTextDocument extends Sprite
{
	public function MultiColumnTextDocument()
	{
		stage.align = StageAlign.TOP_LEFT;
		stage.scaleMode = StageScaleMode.NO_SCALE;
		
		var tfw:MultiTextFieldWrapper = new MultiTextFieldWrapper([tf0, tf1, tf2, tf3]);
		tfw.text = "";
	}
}

}