Actionscript

ActionScript is an ECMAScript-based programming language used for scripting Macromedia Flash movies and applications. Since both ActionScript and JavaScript are based on the same ECMAScript syntax, fluency in one theoretically translates easily to the other. However, while JavaScript's DOM is browser window, document and form centric, the ActionScript DOM is movie centric, which may include animations, audio, text and event handling. 

Categories in section: Articles Reviews
4D Database (5) Actionscript (14) Ajax (30)
Apple (25) ASP (20) C++ (22)
CGI (10) Coldfusion (22) Content Management (12)
CSS (53) DHTML (16) Domain Names (14)
Hardware (31) HTML (39) Java (31)
Javascript (39) JSP (10) Linux (81)
Microsoft Access (17) Microsoft Windows (88) Mysql (21)
Networking & Communication (8) Oracle (15) Perl (19)
PHP (47) PostgreSQL (9) Python (18)
Ruby (51) SAP (2) Search Engine (28)
Structured Query Language (29) Visual Basic (15) Web Hosting (15)
XHTML (9) XML (21)

Ordering   Advanced search

Wednesday, 07 November 2007 |  Written by Adobe Systems Incorporated  | 
User rating: Rate it first |  Hits: 902
Creating arrays The Array constructor function can be used in three ways. First, if you call the constructor with no arguments, you get an empty array. You can use the length property of the Array class to verify that the array has no elements. For example, the following code calls the Array constructor with no arguments: var names:Array = new Array(); trace(names.length); // output: 0 Second, if you use a number as the only parameter to the Array constructor, an array of that length is created, with each element’s value set to undefined. The argument must be an unsigned integer between the values 0 and 4,294,967,295. For example, the following code calls the Array constructor with a single numeric argument: var names:Array = new Array(3); trace(names.length); // output: 3 trace(names[0]); // output: undefined trace(names[1]); // output: undefined trace(names[2]); // output: undefined
Thursday, 29 March 2007 |  Written by Tibor Gyorgy Ballai  | 
User rating: Rate it first |  Hits: 1546
Any Flash developer who has worked on RIAs (Rich Internet Applications) that needed to interact with PHP knows that this isn’t a simple process at all. Although AMFPHP has been around for quite a while, I will start with a simple introduction and then build from there in coming articles.
Thursday, 29 March 2007 |  Written by Tibor Gyorgy Ballai  | 
User rating: Rate it first |  Hits: 1586
One of the biggest changes in ActionScript 3.0 is the way Flash renders (or rather manages rendering of) visual assets. Previously, you'd had to attachMovie() from the library, createEmptyMovieClip() or createTextField(). But all of these were methods of existing movie clips.
Tuesday, 06 March 2007 |  Written by James O'Reilly  | 
User rating: Rate it first |  Hits: 1464
With user experience expectations on the rise, developers increasingly are looking for ways to bring the rich experience of a desktop application to the web.
Tuesday, 06 March 2007 |  Written by Bill Lee  | 
User rating: Rate it first |  Hits: 1461
There are many differences between ActionScript 2.0 and ActionScript 3.0. This article focuses on the changes in the display API. In this article, I provide two very simple Adobe Flash files, one written in ActionScript 2.0 and the other written in ActionScript 3.0. Though these applications are very simple, you can use them to learn the basics of how the display API works in ActionScript 3.0. The article covers only the basics of the display API. If you need more information about it, please refer to the sources mentioned at the end of the article.
Tuesday, 13 February 2007 |  Written by William B. Sanders  | 
User rating: Rate it first |  Hits: 1245
When you create a Flash Media Server 2 application, you typically place emphasis on optimizing the quality of the communications. That is certainly as it should be. Likewise, quality object-oriented programming (OOP) is another priority. One standard in OOP is design patterns—abstract concepts for solving recurring problems using designs that optimize OOP when you apply them appropriately.
Tuesday, 13 February 2007 |  Written by Phil Harrison  | 
User rating: Rate it first |  Hits: 1095
ActionScript 3.0 is a powerful, object-oriented programming language that signifies an important step in the evolution of the capabilities of the Flash Player runtime. The motivation driving ActionScript 3.0 is to create a language ideally suited for rapidly building rich Internet applications, which have become an essential part of the web experience.
Saturday, 03 February 2007 |  Written by Bogdan V  | 
User rating: Rate it first |  Hits: 6161
ActionScript 3.0 has replaced the LoadVars class with URLLoader and URLVariables classes. The URLLoader class downloads data from a URL as text, binary data, or URL-encoded variables. The URLLoader class is useful for downloading text files, XML, or other information to use in dynamic, data-driven ActionScript applications. The URLLoader class takes advantage of the ActionScript 3.0 advanced event handling model, which allows you to listen for such events as complete, httpStatus, ioError, open, progress, and securityError.
Tuesday, 19 December 2006 |  Written by Bogdan V  | 
User rating: Rate it first |  Hits: 7488
 The Date class boasts one of the most versatile constructor methods of all the core classes. You can invoke it four different ways. First, if given no parameters, the Date() constructor returns a Date object containing the current date and time, in local time based on your time zone. Here’s an example: var now:Date = new Date();
Monday, 18 December 2006 |  Written by Adi Bach  | 
User rating: Rate it first |  Hits: 1837
I’ve suggested that ActionScript is perhaps not going to be as difficult and baffling as it might seem at first. I’ve even shown you a sample ActionScript statement that reads pretty much just like plain English.
Results 1 - 10 of 14 << Start < Prev 1 2 Next > End >>

Powered by jReviews