<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" verticalAlign="middle" backgroundColor="white" viewSourceURL="srcview/index.html"> <mx:ApplicationControlBar dock="true"> <mx:Form styleName="plain"> <mx:FormItem label="backgroundAlpha:"> <mx:HSlider id="slider" minimum="0" maximum="1" value="1" liveDragging="true" snapInterval="0.01" tickInterval="0.1" /> </mx:FormItem> <mx:FormItem label="backgroundColor:"> <mx:ColorPicker id="colorPicker" selectedColor="white" /> </mx:FormItem> </mx:Form> </mx:ApplicationControlBar> <mx:DateChooser id="dateChooser" backgroundAlpha="{slider.value}" backgroundColor="{colorPicker.selectedColor}" /> </mx:Application>