Toggling icons on the FileSystemTree control in Adobe AIR
The following example shows how you can toggle icons in the Adobe AIR FileSystemTree control by setting the showIcons property.
Full code after the jump.
<?xml version="1.0" encoding="utf-8"?> <!-- http://airexamples.com/2008/12/15/toggling-icons-on-the-filesystemtree-control-in-adobe-air/ --> <mx:WindowedApplication name="FileSystemTree_showIcons_test" xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" verticalAlign="middle"> <mx:ApplicationControlBar dock="true"> <mx:CheckBox id="checkBox" label="showIcons:" labelPlacement="left" selected="true" /> </mx:ApplicationControlBar> <mx:FileSystemTree id="tree" showIcons="{checkBox.selected}" width="100%" height="100%" /> </mx:WindowedApplication>
