Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can i have my javascript which is getting executed via Flash gui button to trigger backend application layer written with either C, C++ or Java?

Example: My operating system is Flash full screen. Button on press it use javascript and execute local system built in functions and give interactive response.

Thank you

share|improve this question
What does the V8 engine have to do with this? – Billy ONeal May 27 '11 at 23:30
1  
@Billy ONeal: V8 engine is the thought to bridge with C++ functions. But Flash user interface will need action to reach console. How can flash reach a java or c or c++ functions. – YumYumYum May 28 '11 at 8:21

1 Answer

up vote 1 down vote accepted

One option is to have your back-end Java code exposed through a Java Web application. The JavaScript can invoke the Web application (ex. through Ajax) which in-turn will delegate the call to your Java code.

share|improve this answer
1  
Think about fast development. GUI design need to be done fast and quick (Qml, etc) so Flash user interface is used. Now i need fast realtime click button actions with backend. Ajax is slow process, i need to have object speed or socket speed but socket is not secured. Java web application will slow down development speed. My method i need to know actually. – YumYumYum May 28 '11 at 8:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.