Create a text Field during execution in flash.

satheesh

New Member
Messages
883
Reaction score
0
Points
0
Create a text Field during execution:

Example:

this.createTextField("my_txt", this.getNextHighestDepth(), 150, 150, 150, 20);
my_txt.type = "dyanmic";
my_txt.border = true;
my_txt.html = true;
my_txt.htmlText = "<u><b><i>By Satheesh Kumar</i></b></u>";
 
Top