<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Asign icons to Tree control in flex.</title>
	<atom:link href="http://flexonblog.wordpress.com/2008/01/19/asign-icons-to-tree-control-in-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://flexonblog.wordpress.com/2008/01/19/asign-icons-to-tree-control-in-flex/</link>
	<description></description>
	<lastBuildDate>Wed, 23 Dec 2009 06:53:03 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: kumargandhi</title>
		<link>http://flexonblog.wordpress.com/2008/01/19/asign-icons-to-tree-control-in-flex/#comment-376</link>
		<dc:creator>kumargandhi</dc:creator>
		<pubDate>Mon, 08 Dec 2008 15:25:13 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/2008/01/19/asign-icons-to-tree-control-in-flex/#comment-376</guid>
		<description>Hello there,

i am just a programmer trying to help other programmers and in deed get help from those programmers, and regarding my post i just described the properties of the Tree Class and their usage , yes you can get that from the adobe website and even from the Help given in the Flex Builder (if you are using one), but trust me there are some programmers who search on the other blogs then start from where its actually required. and finally do you require icons for the Tree ??, comment me if that is what you want , i will try to help you. :-) , thanks for the comment. 

regards,
kumar.</description>
		<content:encoded><![CDATA[<p>Hello there,</p>
<p>i am just a programmer trying to help other programmers and in deed get help from those programmers, and regarding my post i just described the properties of the Tree Class and their usage , yes you can get that from the adobe website and even from the Help given in the Flex Builder (if you are using one), but trust me there are some programmers who search on the other blogs then start from where its actually required. and finally do you require icons for the Tree ??, comment me if that is what you want , i will try to help you. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  , thanks for the comment. </p>
<p>regards,<br />
kumar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: allyourbase</title>
		<link>http://flexonblog.wordpress.com/2008/01/19/asign-icons-to-tree-control-in-flex/#comment-372</link>
		<dc:creator>allyourbase</dc:creator>
		<pubDate>Wed, 03 Dec 2008 16:14:58 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/2008/01/19/asign-icons-to-tree-control-in-flex/#comment-372</guid>
		<description>...or in other words:
&quot;Marcus, have a look at the adobe-website&quot;?

no offense meant, but i think this single blog entry is quite useless... it doesnt provide any information, cause the properties are self-speaking (and there less space consuming than explained) and the first place to search for information is the adobe website... so its a bit frustrating looking around for help with icons for trees and then finding just a little bit of nothing. :(

sorry...</description>
		<content:encoded><![CDATA[<p>&#8230;or in other words:<br />
&#8220;Marcus, have a look at the adobe-website&#8221;?</p>
<p>no offense meant, but i think this single blog entry is quite useless&#8230; it doesnt provide any information, cause the properties are self-speaking (and there less space consuming than explained) and the first place to search for information is the adobe website&#8230; so its a bit frustrating looking around for help with icons for trees and then finding just a little bit of nothing. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>sorry&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kumargandhi</title>
		<link>http://flexonblog.wordpress.com/2008/01/19/asign-icons-to-tree-control-in-flex/#comment-66</link>
		<dc:creator>kumargandhi</dc:creator>
		<pubDate>Wed, 13 Feb 2008 11:06:30 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/2008/01/19/asign-icons-to-tree-control-in-flex/#comment-66</guid>
		<description>HI MARCUS,
                          its possible ,first define the icons of type Class and assign them to nodes programatically as u required and setItemIcon is the methos we have to use of Tree class.

Example:
            [Embed(&quot;assets/folder_table.png&quot;)]
            private var FolderIcon1:Class;

            [Embed(&quot;assets/folder_user.png&quot;)]
            private var FolderIcon2:Class;

            [Embed(&quot;assets/folder_wrench.png&quot;)]
            private var FolderIcon3:Class;

//These are the folder icons iam assaining to three folders.with the code below.

private function init():void {
                var nodeOne:XML = xmlListColl.getItemAt(0) as XML;
                tree.setItemIcon(nodeOne, FolderIcon1, FolderIcon1);
// similarly set for other folders. here xmlListColl is my XML List for Tree.
                
            }

END:

Try it, will work.or comment me.</description>
		<content:encoded><![CDATA[<p>HI MARCUS,<br />
                          its possible ,first define the icons of type Class and assign them to nodes programatically as u required and setItemIcon is the methos we have to use of Tree class.</p>
<p>Example:<br />
            [Embed("assets/folder_table.png")]<br />
            private var FolderIcon1:Class;</p>
<p>            [Embed("assets/folder_user.png")]<br />
            private var FolderIcon2:Class;</p>
<p>            [Embed("assets/folder_wrench.png")]<br />
            private var FolderIcon3:Class;</p>
<p>//These are the folder icons iam assaining to three folders.with the code below.</p>
<p>private function init():void {<br />
                var nodeOne:XML = xmlListColl.getItemAt(0) as XML;<br />
                tree.setItemIcon(nodeOne, FolderIcon1, FolderIcon1);<br />
// similarly set for other folders. here xmlListColl is my XML List for Tree.</p>
<p>            }</p>
<p>END:</p>
<p>Try it, will work.or comment me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcus</title>
		<link>http://flexonblog.wordpress.com/2008/01/19/asign-icons-to-tree-control-in-flex/#comment-65</link>
		<dc:creator>Marcus</dc:creator>
		<pubDate>Wed, 13 Feb 2008 09:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/2008/01/19/asign-icons-to-tree-control-in-flex/#comment-65</guid>
		<description>Is it possible to use different folderOpenIcon’s / folderClosedIcon’s in a tree?

Can I override this behavior programmtically?</description>
		<content:encoded><![CDATA[<p>Is it possible to use different folderOpenIcon’s / folderClosedIcon’s in a tree?</p>
<p>Can I override this behavior programmtically?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
