2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ActionScript で "Hello World"

Posted at

前提

Flex SDK がインストールされており mxmlc コマンドが実行可能であること。

コード

Hello.as
package {
  import flash.display.Sprite;
  import flash.text.TextField;

  public class Hello extends Sprite {
    public function Hello() {
      var tf:TextField = new TextField();
      tf.text = "Hello Flex World.";
      addChild(tf);
    }
  }
}

上記コードを保存したら、以下のようにコンパイル。

$ mxmlc Hello.as

コンパイルの結果、Hello.swf が作成されているはずなので、ブラウザに ドラッグ&ドロップ などで開き以下のように表示されればOK

kobito.1373443817.994206.png

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?