tags:

views:

33

answers:

2

can anyone help me in building a desktop app that can compile java, c, c++ files and display the results using the flex app

+2  A: 

Adobe AIR lets you create desktop applications based on Flex framework. As of AIR 2.0, you can run native processes from AIR. Thus you can call the corresponding compilers of java/c/c++ from your app and display the results using your pretty flex controls.

Amarghosh
A: 

The above poster is correct in offering a viable solution that already exists within the flash platform. Depending on your requirements you may just be looking to reduce your code library or save some time you could look into utilizing a cross compilable language like haXe. In this case you would write code in the haXe language (similar to ECMAScript) that can then be cross compiled to C++/neko/flash ASVM2/PHP, etc..

godel