Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR ACTIONSCRIPT

hello world in actionscript

_root.createTextField("message", 0, 5, 5, 300, 50);
var tf:TextFormat = new TextFormat(); 
tf.color = 0xFF0000;
tf.size = 32;
tf.bold = true;
message.setTextFormat(tf);
message.text = "Hello World!"; 
Source by riptutorial.com #
 
PREVIOUS NEXT
Tagged: #world #actionscript
ADD COMMENT
Topic
Name
4+4 =