Codebase list ohcount / 29f5ec7d-1b44-45ad-9822-90a9c74d506b/main test / src_dir / mxml1.mxml
29f5ec7d-1b44-45ad-9822-90a9c74d506b/main

Tree @29f5ec7d-1b44-45ad-9822-90a9c74d506b/main (Download .tar.gz)

mxml1.mxml @29f5ec7d-1b44-45ad-9822-90a9c74d506b/mainraw · history · blame

<?xml version="1.0" encoding="utf-8"?>

<mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml">

	<mx:Style>

        TextArea {
			backgroundColor: #EEF5EE;
		}

    </mx:Style>

    <mx:Script>

        function copy() {
            destination.text=source.text
        }

    </mx:Script>


    <mx:TextInput id="source" width="100"/>
    <mx:Button label="Copy" click="copy()"/>
    <mx:TextInput id="destination" width="100"/>

</mx:Application>