Reputation: 710
In intellij IDEA, I am working with Java & ActionScript in the same project. The Java SDK is the default of the project. When I want to program in ActionScript, several classes are not available (eg. String). The former point happens because the project is not using the ActionScript SDK, I guess. Then my question is: Is it to possible use multiple languages (two in this case) in the same IntelliJ IDEA project? If the answer is "Yes", then How can I do?
Thanks in advance
Upvotes: 8
Views: 4524
Reputation: 8846
If your ActionScript classes are in a separate module, you can change the SDK which is used for that module in Project Settings > Modules > yourModule > Dependencies tab > Module SDK
.
Of course, you don't have to change the SDK for your Java module (it will remain JDK xyz).
Upvotes: 8
Reputation: 836
Am not sure if this is what you are looking for, still give it a try.
http://www.jetbrains.com/mps/concepts/index.html
Upvotes: 0