Search code examples
javascriptactionscript-3flex4

Javascript to actionscript


I am trying to convert some pre-existing html/JavaScript files to Flex. I tried making some research to see if there was any compiler that compiles code from javascript to actionscript. As far as I can see, there are many ways to transform actionscript to javascript, but I couldn't find any for the other way around. Does anyone know if there is a way to do that, or should I just write my own tool?


Solution

  • I highly suggest a complete rewrite, it won't take much time since both of them (JS & AS) are ECMA standard languages (correct me if I'm wrong)

    But if you really need an automated way, Try:

    1. Converting your JS to haxe
    2. Compiling output Haxe to AS

    It's the easiest solution on top of my mind.