[NEW] General objects for keeping track of line counts and line count deltas.
[ohcount] / test / src_dir / mxml1.mxml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml">
4
5         <mx:Style>
6
7         TextArea {
8                         backgroundColor: #EEF5EE;
9                 }
10
11     </mx:Style>
12
13     <mx:Script>
14
15         function copy() {
16             destination.text=source.text
17         }
18
19     </mx:Script>
20
21
22     <mx:TextInput id="source" width="100"/>
23     <mx:Button label="Copy" click="copy()"/>
24     <mx:TextInput id="destination" width="100"/>
25
26 </mx:Application>