Tag Archives: actionscript 3.0

Developing Solutions Built with the DOM3 Event Model

May 15, 2011

0 Comments

ActionScript 3.0 now supports the ECMAScript, DOM3, event model syntax. In layman’s terms, this means that you now use the Listener object to detect when you interact with your Flash movie using either a keyboard, mouse, or the new gesture interfaces used when touching the screen directly. This is a big move from AS2. As [...]

Continue reading...

The Main Features of AS3

May 11, 2011

0 Comments

ActionScript is object-oriented in design concept. But what the heck does that mean? If you have developed for other programming languages, such as Java, C++, or C#, then you have heard of this term. Object-oriented essentially means that you break code into objects that can be easily reused. The idea is this: It is easier [...]

Continue reading...

What You Can Expect When You Use AS3

May 11, 2011

0 Comments

ActionScript 3.0 is a rewrite of ActionScript that brings it completely up to date with current development best practices. There are number of big changes that will take a while to get used to. The main changes are: ActionScript is located in Class files or in the Timeline. Code design is truly object-oriented. You cannot [...]

Continue reading...

Actionscript 3.0 Coming Soon Mini flash Template

December 10, 2010

81 Comments

Download Source

Folders in the Downloaded Pack Source FLA – original source files (.fla, .as), you do not need to upload any of these to your server. Use these to change the code or edit graphics and export a new swf to see the changes. The files will be exported to the second folder. Published SWF – [...]

Continue reading...

Advanced Multi Column Flash Drop Down Menu AS3

November 24, 2010

3 Comments

Download Source

Advanced Multi Column Flash Drop Down Menu   AS3 Demo http://thepremiumwordpress.com/item/flash-drop-down

Continue reading...

ActionScript 3.0 array

August 1, 2010

0 Comments

The Array class lets you access and manipulate arrays. Array indices are zero-based, which means that the first element in the array is [0], the second element is [1], and so on. To create an Array object, you use the new Array() constructor . Array() can also be invoked as a function. In addition, you [...]

Continue reading...

Linking and Using Buttons with ActionScript 3.0

February 7, 2010

3 Comments

Today we will learn how to Linking and Using Buttons with ActionScript 3.0 step by step flash tutorial Flash basic : how to add link into Flash button

Continue reading...

How to Use examples in the ActionScript 3.0

February 1, 2010

0 Comments

The ActionScript 3.0 Language and Components Reference supports several Adobe products, including Flash CS3 and Flex 2. The content covers application programming interfaces (APIs) that are specific to ActionScript and that may be implemented differently depending on the authoring tool you are using. Therefore, to test and use the example code in the ActionScript 3.0 [...]

Continue reading...

How To Append text with Actionscript 3

January 30, 2010

2 Comments

appendText () method public function appendText(newText:String):void Language Version : ActionScript 3.0 Runtime Versions : AIR 1.0, Flash Player 9 Appends the string specified by the newText parameter to the end of the text of the text field. This method is more efficient than an addition assignment (+=) on a text property (such as someTextField.text += [...]

Continue reading...