Skip to content

Commit 4ec0880

Browse files
committed
distribution: tweaks to README file
1 parent d3428e1 commit 4ec0880

File tree

1 file changed

+22
-7
lines changed

1 file changed

+22
-7
lines changed

distribution/src/assembly/README.md

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
* **Goto Symbol** lists all symbols in the current file with `Ctrl+Shift+O`.
1313
* **Open Symbol by Name** with `Ctrl+T` and type the name of any symbol in the project.
1414
* **Rename Symbol** for class members and local variables.
15+
* **Build** a project with `Ctrl+Shift+B`.
1516
* **Debug** Apache FlexJS projects in web browsers and Node.js and SWF projects in Adobe AIR and Flash Player.
1617

1718
## Help and Support
@@ -26,25 +27,39 @@
2627

2728
## asconfig.json
2829

29-
Add a file named [`asconfig.json`](https://github.com/BowlerHatLLC/vscode-nextgenas/wiki/asconfig.json) to the root of your project to enable the NextGenAS extension. A sample `asconfig.json` appears below:
30+
Add a file named [`asconfig.json`](https://github.com/BowlerHatLLC/vscode-nextgenas/wiki/asconfig.json) to the root of your project to enable the ActionScript and MXML extension.
31+
32+
A sample `asconfig.json` file for an Apache FlexJS project appears below:
3033

3134
{
32-
"config": "js",
3335
"compilerOptions": {
34-
"debug": true,
35-
"library-path": [
36-
"libs"
36+
"targets": [
37+
"JSFlex",
3738
]
3839
},
3940
"files":
4041
[
41-
"src/MyProject.as"
42+
"src/HelloFlexJS.mxml"
43+
]
44+
}
45+
46+
Here's another sample `asconfig.json` file that is for a pure ActionScript project targeting Adobe AIR on mobile:
47+
48+
{
49+
"config": "airmobile",
50+
"compilerOptions": {
51+
"output": "bin/HelloAIR.swf"
52+
},
53+
"application": "src/HelloAIR-app.xml",
54+
"files":
55+
[
56+
"src/HelloAIR.as"
4257
]
4358
}
4459

4560
## Support this project
4661

47-
Want to see more ActionScript tools and utilities like this Visual Studio Code extension? Please [become a patron](http://patreon.com/josht) and support the next generation of ActionScript development on the web -- without a plugin!
62+
Want to see more ActionScript and MXML tools and utilities like this Visual Studio Code extension? Please [become a patron](http://patreon.com/josht) and support the next generation of ActionScript development on the web -- without a plugin!
4863

4964
[NextGen ActionScript by Josh Tynjala on Patreon](http://patreon.com/josht)
5065

0 commit comments

Comments
 (0)