How to display an output message

Displaying an output message in flash is really useful when needing to display instructions to the user about the flash movie/game, or even credits and acknowledgements. It is extremely easy to do too.
Right click on frame 1, select actions and insert the following actionscript:

trace (“Use the arrow keys to navigate your way around”)

Once the flash movie starts an external message will be displayed to the user saying 'Use the arrow keys to navigate your way around'.

Making a crosshair cursor

A crosshair cursor would be ideal for a shooter/hunter game. And this one procedure can be used to make a standard cursor also.
In this tutorial the crosshair will be used as the cursor also, as it is being made for a shooting game. Using the oval tool draw out a circle on the stage, make sure it has no fill. This cirle only needs be small, with a width and height of about 35. Inside this circle using the line tool, you will need to draw a cross, the middle of the lines that form the cross should intersect directly in the middle of the circle.
Select the crosshair you have just drawn, right click on it and convert it in to a movieclip. In it properties panel, give it an instance name of crosshair_mc. (make sure you do not include the full stop 'mc').
Insert another layer and rename it actions. Right click on the first frame and select actions. Put in the following actionscript:

Mouse.hide();
crosshair_mc.onMouseMove = function() {this._x=_xmouse, this._y=_ymouse;}

This tells flash to hide the mouse cursor, and make the crosshair movieclip's x and y co-ordinates the same as the mouse'.

Welcome to Adobe Flash

Thank you very much for visiting uncover flash, and welcome.
Here you can find lots of free tutorials teaching you about all the different aspects of Adobe Flash. From Web Design, Game Making, Animation, Actionscript 2.0, Interactive Forms and Flash Software.
Feel free providing other users with your comments and advice, and let us know whether you like the tutorials or not with the famous 'like' button.