📄 customtext.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 + -