You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: distribution/src/assembly/README.md
+22-7Lines changed: 22 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@
12
12
***Goto Symbol** lists all symbols in the current file with `Ctrl+Shift+O`.
13
13
***Open Symbol by Name** with `Ctrl+T` and type the name of any symbol in the project.
14
14
***Rename Symbol** for class members and local variables.
15
+
***Build** a project with `Ctrl+Shift+B`.
15
16
***Debug** Apache FlexJS projects in web browsers and Node.js and SWF projects in Adobe AIR and Flash Player.
16
17
17
18
## Help and Support
@@ -26,25 +27,39 @@
26
27
27
28
## asconfig.json
28
29
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:
30
33
31
34
{
32
-
"config": "js",
33
35
"compilerOptions": {
34
-
"debug": true,
35
-
"library-path": [
36
-
"libs"
36
+
"targets": [
37
+
"JSFlex",
37
38
]
38
39
},
39
40
"files":
40
41
[
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"
42
57
]
43
58
}
44
59
45
60
## Support this project
46
61
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!
48
63
49
64
[NextGen ActionScript by Josh Tynjala on Patreon](http://patreon.com/josht)
0 commit comments