/****************************************** * @author Maria A. Zamora * @company Digitec Interactive Inc. * @version 0.1 * @date 12/14/2010 * * SearchCEE class for searchFrame4 movie of the CEE application * CS5 version of com.digitec.cee.ImageCellRender * *******************************************/ package com.digitec.cee { import fl.controls.listClasses.CellRenderer; public class ImageCellRender extends CellRenderer { public function ImageCellRender() { textField.wordWrap = true; textField.multiline = true; textField.autoSize = "left"; } override protected function drawLayout():void { textField.width = this.width; textField.htmlText = textField.text; super.drawLayout(); } } }