⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 customtext.mxml

📁 flex 实现的一个showcase 喜欢flex的朋友可以
💻 MXML
字号:
<?xml version="1.0" encoding="utf-8"?>
<mx:Text xmlns:mx="http://www.adobe.com/2006/mxml"
	creationComplete="handleCreationComplete(event)">
	
	<!-- 
	Author: Erin Fraser
	Version: 1.0.1
	Date: 2008/01/16
	Contact: erin@teknision.com
	Description: 
	Tags: textfield, wordwrap, autosize, stylesheet
	Contributors: 
	-->
	
	<mx:Script>
		<![CDATA[
			
			private var __styleSheet:StyleSheet;
			
			
			/////////////////////////////////////////////////////////////////////////
			//GETTER/SETTERS
			public function set styleSheet(val:StyleSheet):void{
				this.__styleSheet=val
				this.handleStyleSheet()
			}
			
			public function get styleSheet():StyleSheet{
				return this.__styleSheet
			} 
			
			private function handleStyleSheet():void{
				this.textField.styleSheet=this.styleSheet
			}
			
			
			//////////////////////////////////////////////////////////////////////////
			
			private function handleCreationComplete(event:Event):void{
				//
			}
	
		
		]]>
	</mx:Script>
	<mx:TextArea/>
	
</mx:Text>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -