Hi,I have found out how to use ClassFactory.Below is the function called
genFact() which returns ClassFactory type of object.And I had use this
function for rendering my items in a TileaList.Try using this.
P.S. - TileListRenderer is my external mxml file which renders my images in
TileList

       private function genFact() : ClassFactory
       {
           var temp:ClassFactory = new ClassFactory();
           temp.generator = TileListRenderer;
           return temp;
       }

Reply via email to