Reputation: 183
I have a flex web project and I want to convert it into flex mobile project. What is the best way to do it. I know this is not recommended, however it is possible?
Upvotes: 1
Views: 1537
Reputation: 39408
Generally, because of screen size and dpi issues, using the same code will not work.
In Flash Builder, you cannot convert a web project to a mobile project.
However, in theory you can use the command line compiler tools to compile your web project code to an APK or IPA or whatever Blackberry Playbook uses. You may have to add the libraries manually, such as SWC with all the MX libraries.
You could also create a library project, and move as much of your code as possible into the library project. From there you can create a "web project" and a "mobile project" that share the same code/libraries.
Upvotes: 1
Reputation: 4627
In Flash builder,
Upvotes: 0