code1234
code1234

Reputation: 121

Moving from Flex - mxml (action scripts) to another technology

Adobe's Flash has reached the end of the road so all applications has to be rewritten in different tech stack. we have big application written using flex. we have around 400 mxml (+action script) files and it uses java as backend technology. so have couple of questions here -

  1. Is there any converter tool that understands mxml file and can give html5 or javascript components as output?
  2. if there is no tool available, what is the closest technology we should use? I tried with React for UI and in java backend, converted flex method to REST API. This exercise is time consuming and need complete rewrite of both UI and backend.
  3. Is there any other browser plugin that can understand compiled mxml or action scripts (after compilation - .swf file)?

Thanks for help in advance.

Upvotes: 0

Views: 1093

Answers (1)

leokan
leokan

Reputation: 670

The "easiest" way would be using the next version of Flex, Apache Royale.

This will allow you to keep all your actionscript parts of the code and rewrite only the UI part with the new MXML components. It has a bit of a learning curve as many things are done a bit differently, but you don't have to change your AS3 code.

Upvotes: 2

Related Questions