<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/01/27/displaying-a-label-controls-text-as-a-password/ -->
<mx:Label xmlns:mx="http://www.adobe.com/2006/mxml">

	<mx:Script>
		<![CDATA[
			import mx.core.IUITextField;

			public function get tf():IUITextField {
				return textField;
			}
		]]>
	</mx:Script>

</mx:Label>

