0
votes

I have a flex mobile project and I want to convert it into web-based project. What is the best way to do it.

Thanks

2

2 Answers

3
votes

Create a library project and insert all non mobile specific classes and views in there, which can then be used in your mobile project. Create a new web based project and include said library, then implement your web based layout while reusing as much of the libraries as possible.

If you've followed good practice, you should be able to reuse 90-95% of all the code that was done in your mobile project into your web one.