OnJava8-Examples/gui/flex/helloflex2.mxml
2015-04-20 15:36:01 -07:00

16 lines
393 B
XML

<?xml version="1.0" encoding="utf-8"?>
<mx:Application
xmlns:mx="http://www.macromedia.com/2003/mxml"
backgroundColor="#ffffff">
<mx:Script>
<![CDATA[
function updateOutput() {
output.text = "Hello! " + input.text;
}
]]>
</mx:Script>
<mx:TextInput id="input" width="200"
change="updateOutput()" />
<mx:Label id="output" text="Hello!" />
</mx:Application>