![]() |
|
||||||||||
|
|||||
|
Регистрация: Sep 2012
Сообщений: 101
|
Как создать текстовое поле в клипе программным способом?
|
|
|||||
|
Регистрация: Mar 2011
Сообщений: 243
|
|
|
|||||
|
Регистрация: Sep 2012
Сообщений: 101
|
Не могу найти там
|
|
|||||
|
Регистрация: Jan 2009
Сообщений: 1,651
|
Проматываешь в конец, там примеры использования, типа:
package { import flash.display.Sprite; import flash.text.TextField; import flash.text.TextFieldAutoSize; import flash.text.TextFormat; public class TextFieldExample extends Sprite { private var label:TextField; private var labelText:String = "Hello world and welcome to the show."; public function TextFieldExample() { configureLabel(); setLabel(labelText); } public function setLabel(str:String):void { label.text = str; } private function configureLabel():void { label = new TextField(); label.autoSize = TextFieldAutoSize.LEFT; label.background = true; label.border = true; var format:TextFormat = new TextFormat(); format.font = "Verdana"; format.color = 0xFF0000; format.size = 10; format.underline = true; label.defaultTextFormat = format; addChild(label); } } }
__________________
мой пустой блог |
|
|||||
|
Регистрация: Sep 2012
Сообщений: 101
|
Можно по-подробнее? А то я что-то не въезжаю
|
![]() |
![]() |
Часовой пояс GMT +4, время: 22:01. |
|
|
« Предыдущая тема | Следующая тема » |
|
|