views:

52

answers:

1

Hi Can anyone point me to online tutorials, parsing apps, etc for converting C code into actionscript3?

+3  A: 

I recommend you take a look at Alchemy by Adobe, a mostly automatic way to translate C/C++ applications.

Kaleb Pederson
Thanks, I'm more interested in manual conversion from existing C libraries.
eco_bach
@eco: If the C code uses anything beyond the most basic features, then you're in for a world of hurt. Macros, typedefs, uninions, direct memory manipulation, function overloading, etc. It sounds like you should check out Alchemy as Kaleb suggests.
Gunslinger47