In this article we will learn about some of the frequently asked ActionScript programming questions in technical like “hello world in actionscript” Code Answer. When creating scripts and web applications, error handling is an important part. If your code lacks error checking code, your program may look very unprofessional and you may be open to security risks. Error or stack handling on ActionScript was simple and easy. An error message with filename, line number and a message describing the error is sent to the browser. This tutorial contains some of the most common error checking methods in ActionScript. Below are some solution about “hello world in actionscript” Code Answer.
hello world in actionscript
xxxxxxxxxx
1
_root.createTextField("message", 0, 5, 5, 300, 50);
2
var tf:TextFormat = new TextFormat();
3
tf.color = 0xFF0000;
4
tf.size = 32;
5
tf.bold = true;
6
message.setTextFormat(tf);
7
message.text = "Hello World!";