うまく解説できませんが、AS3を教えてください。

mx:Listにカスタムアイテムレンダラに複数のFactoryオブジェクトを入れ込んだりもできないかな・・・。
listクラスはコンテナじゃない?ってのはどういうことなんだ?
listクラスにCanvasをFactoryオブジェクトとしてカスタムアイテムレンダラに入れて、出てきたdata?オブジェクトにaddChildしても何も表示されなかった。
そもそもlistオブジェクト.itemRendererはどう使うのか。
そもそもlistItemRendererとどう違うのか。
そもそもlistクラスを使うのが間違いなのか。
そもそもlistはクラスなのか。
そもそもやろうとしていることはlistを使っていいのか。
そもそも俺はプログラムに向いているのか。
090407-adobe-flex3-help-style.jpg

スタイルの継承順序

Flex がスタイルを探す順序を理解することは、どのスタイルプロパティがどのコントロールに適用されるのかを把握するために重要です。

参照元:Adobe Flex 3スタイルの継承について

<?xml version="1.0" encoding="utf-8"?>
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
width="150" height="140"
viewSourceURL="src/StylesSetStyle/index.html"
>
<mx:Script>
<![CDATA[
private function initVBox():void
{
myVBox2.setStyle("paddingTop", 12);
myVBox2.setStyle("paddingBottom", 12);
}

]]>
</mx:Script>

<mx:VBox borderStyle="solid">
<mx:Button label="Submit"/>

</mx:VBox>
<mx:VBox
id="myVBox2" borderStyle="solid"
paddingTop="12" paddingBottom="12"
initialize="initVBox();"
>
<mx:Button label="Submit"/>
</mx:VBox>
</mx:Application>

Adobeより引用・転載メモ
http://www.adobe.com/jp/devnet/flex/quickstart/styling_components/
090406-tomotomo-website.jpg
ウェブサイト製作:お好み焼き西調布駅前TOMOTOMO

<mx:Script>
private var cfDefaultTemplate:ClassFactory = new ClassFactory();

private function init():Void{
    cfDefaultTemplate.item = template01;
    cfDefaultTemplate.newInstance;

}

</mx:Script>


<mx:List
    id="idTemplate"
    width="300"
    initalize="init()"
>

</mx:List>
090325-mtcategorytag.jpg
MTにこんな機能あったらなぁ・・・という妄想