Skip to content

Instantly share code, notes, and snippets.

@joshtynjala
Created February 5, 2021 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshtynjala/951e4c038297995e25ff811ba7d0a578 to your computer and use it in GitHub Desktop.
Save joshtynjala/951e4c038297995e25ff811ba7d0a578 to your computer and use it in GitHub Desktop.
asconfig.json: How to create an ActionScript/MXML project with workers in Visual Studio Code
{
"config": "flex",
"compilerOptions": {
"source-path": "src",
"output": "bin/MyProject.swf"
},
"mainClass": "MyProject",
"workers": [
{
"file": "src/MyWorker.as",
"output": "bin/MyWorker.swf"
},
{
"file": "src/AnotherWorker.as",
"output": "embeddedworkers/AnotherModule.swf"
}
]
}
@joshtynjala
Copy link
Author

An example asconfig.json project file for Visual Studio Code that builds an ActionScript/MXML application with worker SWFs.

Looking for a modern alternative to Adobe Flash Builder? Try the ActionScript & MXML language extension for Visual Studio Code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment