Running the hello world application in ActionScript 3 (flash pro CS5.5)

I myself teach ActionScript 3 myself, I read some lessons and understood the code perfectly, the problem is how to run it, I know some programming languages, and I used some IDEs for many years, but for some reason I just don’t I can understand how to compile and run simple actionscript programs in CS5.5.

Can someone tell me how this can be done with flash pro CS5.5, is there another program more akin to insecurity or eclipse that I can write actionscripts and run them?

thank

+3
source share
2 answers

.as .fla , Document, Class.

.fla.

:

1) MyDocumentClass.as, AS3. MyDocumentClass. :

package {

import flash.display.MovieClip;

 public class MyDocumentClass extends MovieClip {

  public function MyDocumentClass():void {
   trace("It worked!");
  }
 }
}

?

2) Flash CS5.5 .fla. .fla , . - . " " - "MyDocumentClass" , .fla. : " !" .

, AS3-, Flash IDE - , - . FLA - , .fla.

CS5, MovieClips, . . "advanced", "export for AS3" - , , , . , , - , , 1 2 , .

!

+7

. AS Essential ActionScript 3.0. .

FlashDevelop, , Flash IDE , . , IDE, FLA , , , , , , , , IDE, .

+1

All Articles