declare bindings outside of component tags
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:String id="firstName">Alaric</mx:String> <mx:Label id="nameLabel" /> <mx:Binding source="firstName" destination="nameLabel.text" /> </mx:Application>