Loading XML in AS3
Things have changed a little bit in AS3.0 when it comes to load XML but I am going to show you it is very easy to do once you done it a couple of times. |
attachMovie in AS3
You might have been wondering where attachMovie is gone in Actionscript 3.0, well no need to look for it because it's gone. In Actionscript 3.0 you will have to use another way to attachMovie clips on the stage at runtime, I am going to tell you all about it in that little tutorial. |
Mouse events in Actionscript 3.0
The event system has been revamped in actionscript 3.0, for the best of your future applications but for the worse if you still don't understand how to use it. Hopefully this little tutorial should bring some light on your knowledge. |
|
|
Preloading movies and pictures with the MovieClipLoader class 
In the world of Flash interactivities and multimedia applications it is always important to let the user know what is happening when the application needs to be paused while a fairly large amount of data is being loaded. To do that nothing's best than a nice preloading system. |
Transferring data across domains using crossdomain.xml 
In many occasions you might want a SWF to be able to retrieve data from another domain, by loading variables from a text file for example, or you might want to send data from a Flash email form to a PHP script that is sitting on another domain. |
Mouse control and actionscript
In this tutorial we are going to examine more precisely the properties _xmouse and _ymouse, the mouse events onMouseMove, onMouseUp, onMouseDown and onMouseWheel as well as the method Mouse.hide and Mouse.show. |
|
Creating a grid dynamically with actionscript 
There is plenty of reasons why you would like to create a grid in Flash, if you are creating a sudoku a crossword activity or a chess game you will surely need to create a grid with cells that need to be interactive and able to display some kind of data (graphics or text). |
|
Loading HTML-formatted text in a dynamic text fieldAlthough it is very easy to format your text at authoring time, it is not the case when you want to load text dynamically in a dynamic text field. This tutorial shows you how to load HTML-formatted text in a dynamic text field. |
|
|
Using Shared Objects
Shared objects are to the Flash player what cookies are for the browsers, they can be used in many circumstances and are very useful to retrieve data between sessions. |
|