Flash / Flex / ActionScript/TextField/skew — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 08:14, 26 мая 2010
text field is skewed
package{
import flash.display.Sprite;
import flash.text.*;
import flash.geom.Matrix;
public class Main extends Sprite{
public function Main(){
var t:TextField = new TextField( );
t.text = "Hello world";
t.transform.matrix = new Matrix(1, 1, 0, 1); // Skew text
addChild(t);
}
}
}