Job Recruitment Website - Job information - What exactly is an as3 programmer?

What exactly is an as3 programmer?

ActionScript, usually referred to AS as for short, is the copy 100 language of Flash platform. As a program, it can be compiled into SWF and SWC. SWF is what we call Flash animation. But now SWF is not just an animation, but a carrier of RIA. There are three versions of ActionScript: 1.0 (as 1), 2.0(AS2) and 3.0(AS3).

Only FlashPlayer9 and above supports SWF compiled by as3. These three versions are quite different. Now the latest version is AS3. So as3 programmers do flash development, not flash design.

Extended data:

Naming skills

It is best to use the package name corresponding to the owner and related projects. By convention, package names should start with reverse url names.

For example, if ExampleCorp (exampleCorp COM) wrote some ActionScript3.0 classes, all of which will be placed in com. The examplecorp package (or a subpackage of com.examplecorp).

In this way, if there is another ExampleCorp(ExampleCorp.co.UK) in the UK, and it has also written some ActionScript3.0 classes, then it is only necessary to use the package UK.co.ExampleCorp to ensure uniqueness.

When classes are part of a specific application, they should be placed in application-specific subpackages. For example, ExampleCorp may have an application called WidgetStore.

If the WidgetStore application uses a class named ApplicationManager, the class should be in com.examplecorp or a subpackage of the package.

Usually, package names start with lowercase letters.

[implicit getter and setter]

Public function getcount (): uint {

Return _ count;

}

Publicfunctionsetcount (value: uint): uint {

If (value

_ _ count = = value

Other {

throw error();

}

}