Hello World In Actionscript

[Solved] Hello World In Actionscript | Actionscript - Code Explorer | yomemimo.com
Question : hello world in actionscript

Answered by : mehedi-islam-ripon

_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 : https://riptutorial.com/actionscript/example/25542/hello-world-example | Last Update : Wed, 10 Mar 21

Answers related to hello world in actionscript

Code Explorer Popular Question For Actionscript