Skip to content

Instantly share code, notes, and snippets.

@acotie
Created January 12, 2010 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save acotie/275300 to your computer and use it in GitHub Desktop.
Save acotie/275300 to your computer and use it in GitHub Desktop.
component sample : ./components/comp1.mxml ...
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" styleName="plain" layout="absolute" xmlns:components="components.*"
width="829" height="529" pageTitle="Flex Basicサンプル:カスタムMXMLコンポーネント(MXML Components)">
<components:comp1 id="comp1" y="51" dispString="{comp2.textinput1.text}" />
<components:comp2 id="comp2" x="408" y="51" />
<mx:ApplicationControlBar x="10" y="0" width="100%">
<mx:Label text="メインアプリケーション" fontSize="16" />
</mx:ApplicationControlBar>
</mx:Application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment