<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="251" height="51"> <mx:Script> <![CDATA[ private function changeColor():void { cvsColor.setStyle("backgroundColor", txtColor.text); } ]]> </mx:Script> <mx:Canvas x="0" y="0" width="251" height="51" backgroundColor="#FFFFFF"> <mx:TextInput id="txtColor" x="10" y="10" width="95" fontSize="15" keyUp="changeColor();" maxChars="7" text="#" restrict="#0-9A-Fa-f"/> <mx:Button id="btnColor" x="113" y="13" label="→" width="31" height="23" click="changeColor();" /> <mx:Canvas id="cvsColor" x="152" y="10" width="89" height="29" borderStyle="solid" borderColor="#C0C0C0"> </mx:Canvas> </mx:Canvas> </mx:Application> 色確認用