user34537
user34537

Reputation:

script language for flash and c++?

I spend hours every week coding my own personal projects. I have a nice C++ backend. For my next idea, it is small and lite enough to be done in flash. But i want to do it in a scripting language so i can call the code in my C++ projects. What script can i use in flash along with c++?

Upvotes: 0

Views: 580

Answers (1)

Sunlight
Sunlight

Reputation: 2113

According to Adobe, ActionScript is based on ECMAScript (aka JavaScript), so in principle you could write your code in ECMAScript and use an ECMAScript engine for C++. Wikipedia has a good list of engine implementations.

Upvotes: 1

Related Questions