How to configure a Flex module to use multiple RSLs for debuging
Hello,
Currently I'm trying out IntelliJ to replace Flexbuilder as our IDE in a big Flex project.
I have a Flex (main)module that loads around 50 RSLs.
I'm not shure how to configure these modules as RSLs so that they are debugable and profileable.
Has someone a hint on that?
I did not find a good explanation on the web.
Thank you
Regards
Marc
请先登录再写评论。
Unfortunately current IDEA's project structure is not powerful enough for easy dealing with RSLs. The feature of generating RSLs is not implemented yet (http://youtrack.jetbrains.net/issue/IDEA-24822). To use existing RSLs (except standard ones from SDK) you need to write custom compiler configuration file and tell IDEA to use it when compiling.
Thanks, for this hint. I created a custom compiler file with flexmojos 3.6 for the main appllication which uses library files via rsl. But I can still not debug the library loaded via rsl. Do I have to handle the Flex library which should be debugged in a special way?
Looks like your RSLs do not contain debug information. Are they created by Flexmojos? Look for Flexmojos option to keep debug information in generated RSLs (last 2 comments): http://youtrack.jetbrains.net/issue/IDEA-27264#comment=27-93068
Hi, thanks. Now it is working!