Codebase list ohcount / a828f03c-a62e-49d7-b2ec-6e6df59903d2/main test / src_dir / mxml1.mxml
a828f03c-a62e-49d7-b2ec-6e6df59903d2/main

Tree @a828f03c-a62e-49d7-b2ec-6e6df59903d2/main (Download .tar.gz)

mxml1.mxml @a828f03c-a62e-49d7-b2ec-6e6df59903d2/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>