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.
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 __._,_.___
--
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
- Visit your group "flexcoders" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
__,_._,___
- Re: [flexcoders] how to assign itemRenderer w/ActionScrip... Pan Troglodytes
- RE: [flexcoders] how to assign itemRenderer w/Action... Yaniv De Ridder
- Re: [flexcoders] how to assign itemRenderer w/Ac... Pan Troglodytes
- Re: [flexcoders] how to assign itemRenderer w/Action... Michael Schmalle
- Re: [flexcoders] how to assign itemRenderer w/Ac... Pan Troglodytes
- Re: [flexcoders] how to assign itemRenderer ... Michael Schmalle
- Re: [flexcoders] how to assign itemRenderer ... Tom Chiverton
- Re: [flexcoders] how to assign itemRende... Pan Troglodytes
- Re: [flexcoders] how to assign item... Tom Chiverton
- Re: [flexcoders] how to assign ... Pan Troglodytes
- RE: [flexcoders] how to assign ... Ely Greenfield
Reply via email to

