Skip to content

Instantly share code, notes, and snippets.

@junwatu
Created August 17, 2011 16:02
Show Gist options
  • Save junwatu/1151865 to your computer and use it in GitHub Desktop.
Save junwatu/1151865 to your computer and use it in GitHub Desktop.
MyBooks main file
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:custom="comp.ui.*" xmlns:local="*" width="700" height="400">
<mx:Label text="MyBooks" fontSize="16" fontWeight="bold" textAlign="left" width="100%"/>
<mx:HDividedBox height="100%" width="100%">
<local:BookList width="40%" height="100%"/>
<custom:BookDetails width="60%" height="100%"/>
</mx:HDividedBox>
</mx:Application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment