Skip to content

Instantly share code, notes, and snippets.

@yoko
Created June 17, 2009 09:25
Show Gist options
  • Save yoko/131164 to your computer and use it in GitHub Desktop.
Save yoko/131164 to your computer and use it in GitHub Desktop.
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" focusIn="bg(true)" focusOut="bg(false)" backgroundColor="0xCCCCCC" backgroundImage="none">
<mx:Script>
<![CDATA[
private function bg(focus:Boolean):void
{
this.setStyle('backgroundColor', focus ? '0x333333' : '0xCCCCCC');
}
]]>
</mx:Script>
<mx:TextInput/>
</mx:Application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment