Flash & ActionScript3: enable input in TextField

Trabla: Flash & ActionScript3 - enable input in TextField

Solving:

import flash.text.TextField;
import flash.text.TextFieldType;

...

var fldComment = new TextField();
fldComment .width = 50;
fldComment .height = 20;
fldComment .x = 10;
fldComment .y = 10;
fldComment .border = true;
fldComment .selectable = true;
fldComment .type = TextFieldType.INPUT;

movieclip.addChild( fldComment  );

No comments:

Post a Comment