Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

multiple languages in the same project in Intellij idea

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

like image 935
Naive Developer Avatar asked Mar 14 '13 05:03

Naive Developer


1 Answers

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).

like image 67
Bastien Jansen Avatar answered Oct 16 '22 22:10

Bastien Jansen