Using the ActionScript 3.0 Debugger
With Adobe Flash CS3 fast approaching, it is important to understand one of the elements any Flash developer lives and dies by… the debugger. This article will give you a tour of the new ActionScript 3.0 debugger interface and some of the different features found in the debugger. It also discusses how to use the debugger when you’re troubleshooting issues with ActionScript 3.0 classes and frame scripts in FLA files.
You’ll learn all about breakpoints, how to use them in your ActionScript 3.0 code, and the role they play in debugging your Flash application.
View the Article [adobe.com]
Creating a Multidimensional Array in Flash
With a typical Array in Flash, you can define one element and call that element with the arrayName[arrayIndex]. This works fine if you only have one element you want to be defined in the array. What if you want to define multiple elements in the array? That’s where multidimensional arrays come into play.
Here is an example of multidimensional array code in flash.
var array:Array = new Array(); array[0] = ["cat.jpg", "1", "Here is a picture of a cat"]; array[1] = ["dog.jpg", "2", "Here is a picture of a dog"]; array[2] = ["frog.jpg", "3", "Here is a picture of a frog"];
To access the data, use array[0][0] to access “cat.jpg”, array[1][1] to access “2″, and array[2][2] to access “Here is a picture of a frog”.
Simple Flash Button
In this tutorial I will explain how to make a simple flash button. This will be part one of the Flash button series.
To complete this tutorial, you must have Flash 8 installed. If you do not have Flash 8, you can download the 30 day trial.
Open flash and create a new document 250px by 250px. Select the Rectangle tool and draw a rectangle about 200px wide by 50px tall.
After creating the rectangle, select it by double-clicking the rectangle and select Modify > Convert to symbol from the toolbar (Or press F8) to convert the rectangle to a symbol. Name your symbol button_mc.
Once you have created your symbol, click it and select Window > Actions from the toolbar (Or press F9) to open your Actions code window. In the Actions panel, with your symbol selected, type the following code:
on (release) {
getURL("http://www.noobflash.com");
}
Select Control > Test Movie from the toolbar (Or press CTRL+Enter) to test your Flash movie. Click your button and you should be taken to the Noob Flash homepage.
That’s it! Pretty easy, huh? In the next lesson we will learn how to create this same button using nothing but ActionScript.
If you want you can download the Flash 8 Source File.
Flash Player 6 Bug in IE and Windows XP
There is an occasional bug with versions of the Flash Player older than 7 that causes IE to throw an error and crash.
The solution if you ever run into this problem is to upgrade your version of the flash player to the newest one.
Read More Info [itweek.co.uk]
Flash Player 9 Update
Adobe has released a new build of the Flash Player 9 Update for the Solaris platform. It fixes some bugs and adds support for Solaris on the x86 and Sparc CPU architecture. The update is supported by Solaris 10, Firefox 2.0, and Mozilla 1.7.
There is no official support for specific camera or sound drivers on the Solaris platform and this update does not include full-screen and windowless mode support.
Read More and Download Now From Adobe Labs




