LoginSignup
6
5

More than 5 years have passed since last update.

sublime text2でas3ビルド(mac)

Last updated at Posted at 2012-08-14

Tools->BuildSystem->New BuildSystem

as3.sublime-build
{
    "cmd": [
        "(FLEX_SDK_PATH)/bin/mxmlc",
        "${file}"
    ],
    "selector": "source.actionscript",
    "encoding": "shift-jis",
    "variants":
    [
        {
            "name": "Run",
            "cmd": [ "open", "${file_base_name}.swf"]
        }
    ]
}

上記を /Sublime Text2/Packages内に配置

*.asを開いてCmd+B

6
5
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
6
5