Created
February 5, 2021 19:12
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.