-
-
Save GarconsdeCrystal/bbf8aeab6a30ff69af2c6f978614007f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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