TextFormat.display?
なにこれ?
* LiveDocs に載ってない?
* http://livedocs.adobe.com/flex/3_jp/langref/flash/text/TextFormat.html
♥0 |
Line 11 |
Modified 2009-11-03 18:45:11 |
MIT License
archived:2017-03-30 04:38:01
ActionScript3 source code
/**
* Copyright bkzen ( http://wonderfl.net/user/bkzen )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/kNkG
*/
/**
* なにこれ?
* LiveDocs に載ってない?
* http://livedocs.adobe.com/flex/3_jp/langref/flash/text/TextFormat.html
*/
package {
import flash.display.Sprite;
import flash.text.TextField;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
var txt: TextField = new TextField();
addChild(txt);
txt.text = txt.getTextFormat().display;
}
}
}