Skip to content

Instantly share code, notes, and snippets.

@audreyt
Created February 9, 2009 22:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save audreyt/61081 to your computer and use it in GitHub Desktop.
Save audreyt/61081 to your computer and use it in GitHub Desktop.
<mx:Accordion id="Accordion" left="10" top="10" bottom="10" right="10" visible="true">
<mx:Canvas label="Activities" visible="true" id="PersonActivitiesCanvas"
width="100%" height="100%">
<mx:HTML fontSize="12 location="Loading.html" cornerRadius="5" left="0" top="0" bottom="0" right="0"/>
</mx:Canvas>
<mx:Canvas label="Network" width="100%" height="100%" id="PersonNetworkCanvas">
<mx:Panel id="NetworkPanelLeft" width="47%" left="10" top="3" bottom="27" title="Following {PersonWatchlist.length} people" fontSize="15" cornerRadius="10" fontFamily="Arial">
<mx:List dataProvider="{PersonWatchlist}" itemRenderer="Person"></mx:List>
</mx:Panel>
<mx:Panel id="NetworkPanelRight" top="3" right="10" bottom="27" width="47%" cornerRadius="10" title="{PersonWatchers.length} Followers" fontSize="15">
<mx:List dataProvider="{PersonWatchers}" itemRenderer="Person"></mx:List>
</mx:Panel>
<mx:CheckBox id="PersonFollowCheckbox" click="doFollow()" bottom="0" right="10"></mx:CheckBox>
</mx:Canvas>
<mx:Canvas label="Profile" visible="true" id="PersonProfileCanvas" width="100%" height="100%">
<mx:HTML location="Profile.html" cornerRadius="5" id="PersonProfile" left="10" top="10" bottom="10" right="10"/>
</mx:Canvas>
</mx:Accordion>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment