Okay, let me correct my statement:

itemRenderers are sometimes styles and sometimes not.  And when they are styles, they're not really.

;)

On 6/19/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:

Hi,

Don't get them confused;

> itemRenderers ARE styles

Theoretically it is a property not a style. You may be able to set them with setStyle() but, they are not styles of the ListBase.

Anytime you see this in a class file;

itemRenderer = new ClassFactory(ListItemRenderer);

Which is in the Constructor of List, it is a property.

and when you see this in a class

    public function get itemRenderer():IFactory
    {
        ....
    }

    /**
     *  @private
     */
    public function set itemRenderer(value:IFactory):void
    {
      ...
    }

It is a property of that class not a style.

BTW, itemRenderer is not in either of the nonInheritingStyles or inheritingStyles proto chain. So I really don't know how that is even working.

It may just be a fluke because itemRenderer is a public property already defined on the ListBase.

Just to clear some things up :)

Peace, Mike



On 6/19/06, Pan Troglodytes < [EMAIL PROTECTED]> wrote:

itemRenderers ARE styles, the help just hasn't completely been updated yet.

You were actually very close.

myTile.setStyle("itemRenderer", new ClassFactory(myThumbnail));

You may have to fully qualify it:

myTile.setStyle("itemRenderer", new ClassFactory(itemRenderers.myThumbnail));

Now, as to how to manipulate it after this, I don't know.  See my thread "changing out pieSeries.itemRenderer at runtime" where I'm asking the same thing.



On 6/19/06, keishichi2001 < [EMAIL PROTECTED]> wrote:

I've trying following code to assign custom renderer into itemRenderer
property on a TileList.

You'll see commented part, which works well.
However, I just want to try how i can do this by ActionScript.
Following code reports no error, but each cell is empty(actually
printed 'object Object').

Someone could help me out?

k

====
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:comp="*"
creationComplete="init()">

<mx:Script>
<![CDATA[
import itemRenderers.myThumbnail;
import mx.collections.ArrayCollection;
[Bindable]
private var photoColl:ArrayCollection;

private var mT:myThumbnail = new myThumbnail;

private function init():void
{
simpletest.send();

myTile.setStyle("itemRenderer", mT);
}
]]>
</mx:Script>

<mx:Label id="foodName"
text="Watch here"/>

<mx:HTTPService id="simpletest"
url=""> result="photoColl=new
ArrayCollection(simpletest.lastResult.list.food)"/>

<mx:TileList id="myTile"
dataProvider="{photoColl}"
width="700"
rowHeight="170"
columnWidth="220"/>

<!--
<mx:TileList id="foodTile"
dataProvider="{photoColl}"
itemRenderer="itemRenderers.myThumbnail"
width="700"
rowHeight="170"
columnWidth="220"/>
-->

</mx:Application>
====




--
--
Jason




--
What goes up, does come down.




--
--
Jason __._,_.___

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





SPONSORED LINKS
Web site design development Computer software development Software design and development
Macromedia flex Software development best practice


YAHOO! GROUPS LINKS




__,_._,___

Reply via email to