use c++ lib in flash builder as3 project

前端 未结 2 493
闹比i
闹比i 2021-01-27 07:39

Is it possible to use c++ lib inside as3 project? (flash builder 4.7)

I have a project writen in c++ and I want to build the gui with flash. I\'m seracing for a way to u

相关标签:
2条回答
  • 2021-01-27 07:55

    Probably not what you are looking for, but you could use FlasCC http://www.adobe.com/devnet-docs/flascc/docs/Reference.html That imposes some requirements on your lib, but I think nothing that #define-s cannot handle )

    0 讨论(0)
  • 2021-01-27 08:10

    I guess that a Flash GUI is actually some Web interface. Then, you need some HTTP server library in C++, like the Onion library, the network part of Poco libraries, or the Wt library.

    BTW, perhaps making a pure HTML5 + Javascript interface is easier and more portable, with the real work done in C++.

    0 讨论(0)
提交回复
热议问题