Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread Harbs
No. MXML does not convert to HTML. In FlexJS it converts it to JS files. You might be able to use the compiler to generate js that you can incorporate into other code. We have been very happy with FlexJS. Why don’t you want to use the framework? Harbs > On Jun 7, 2017, at 11:56 AM, Gudu wrot

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread Gudu
Our plan is to migrate from Adobe Flex to HTML/JS but it is not to convert it to FlexJS. I was trying to convert all the MXML and ActionScript we have to HTML/JS using FalconJX or FlexJS. Now, I am asking if any possiblity of converting the MXML to HTML and the actionScript and all the adobe librar

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread yishayw
If you plan to write your app in JS and only need FalconJX for the initial conversion that's a possibility too, though it might not be the optimal one. You might want to watch [1] Harbs' talk on how to get it to compile. You can then use the created sources to build your own architecture on that.

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread Harbs
Yes: https://www.youtube.com/watch?v=-FcLs0O-BWQ The rest of the presentations should help as well: https://www.youtube.com/playlist?list=PL4EsaSA9xpnnraJX7NzpX6eh_P95RO8Pj >

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread Olaf Krueger
>Our plan is to migrate from Adobe Flex to HTML/JS but it is not to convert it to FlexJS. FlexJS also places you in the position to use HTML with AS3 [1] >Now, I am asking if any possiblity of converting the MXML to HTM I think there's no way to convert MXML to HTML automatically. Hope this helps

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread Olaf Krueger
Maybe this also helps: http://apache-flex-users.246.n4.nabble.com/FalconJX-How-To-Use-td14824.html#a14841 Summary: You have to remove all flex/flash dependencies from your AS3 code and you have to replace your mx/spark components by FlexJS components. Depending on your code base that could be

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread piotrz
Gudu, Yes it is create, but as I stated in my post - You will be able to automatically convert logic which do not have dependency to Flash. If you have some library or separate business logic from you UI - That is something which FalconJX should handle without the problem. Flex UI need to be rewr

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread Gudu
So does it mean, FlexJS and FalconJX don't create HTML/CSS/JavaScript from Flex Application. Some published paper described FalconJX and FlexJS as a means to migrate Flex application to HTML5/JS application. If someone has success migrating from Flex application to HTML5 -- View this message in

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread yishayw
It is possible, we've been doing it. Unless you want to modify the framework you don't need the developer setup. This [1] should get you started. [1] https://cwiki.apache.org/confluence/display/FLEX/Getting+Started+With+FlexJS -- View this message in context: http://apache-flex-development.

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread piotrz
Hi Gudu, The answer is yes and no. Yes - You will be able in most cases convert your business logic which is not have dependency to flash to FlexJS. No - Unfortunately your UI need to be rewrite probably from scratch. If you are going to write your own application I think everything what you n

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread PKumar
Not completely, you can re-use your existing business logic and back end serverice but view components you have to rewrite using FlexJS components set. On 07-Jun-2017 2:14 PM, "Gudu [via Apache Flex Development]" < ml+s247n62212...@n4.nabble.com> wrote: > Hello all, > > I have lots of MXML an