Re: Need Migration Help

2020-06-25 Thread Carlos Rovira
; On Thu, Jun 25, 2020 at 2:13 PM Yishay Weiss >>> wrote: >>> >>>> Try adding config: flex compiler option. If you’re using VSCode to >>>> compile your app you can do this by adding the following line at the top >>>> level: >>>> >>>> >>

Re: Need Migration Help

2020-06-25 Thread Piotr Zarzycki
M Yishay Weiss >> wrote: >> >>> Try adding config: flex compiler option. If you’re using VSCode to >>> compile your app you can do this by adding the following line at the top >>> level: >>> >>> >>> >>> "co

Re: Need Migration Help

2020-06-25 Thread Piotr Zarzycki
adding config: flex compiler option. If you’re using VSCode to >> compile your app you can do this by adding the following line at the top >> level: >> >> >> >> "config": "flex" >> >> >> >> *From: *Sohail Abdul Khaliq

Re: Need Migration Help

2020-06-25 Thread Sohail Abdul Khaliq
adding the following line at the top level: > > > > "config": "flex" > > > > *From: *Sohail Abdul Khaliq > *Sent: *Thursday, June 25, 2020 12:09 PM > *To: *users@royale.apache.org > *Subject: *Re: Need Migration Help > > > > Thank

RE: Need Migration Help

2020-06-25 Thread Yishay Weiss
o: users@royale.apache.org<mailto:users@royale.apache.org> Subject: Re: Need Migration Help Thanks alot for the quick reply please see attached image of the code.Im using fx script and not having any issue inside mxml file.The issue am facing in within .as file On Thu, Jun 25, 2020 at 1:51

Re: Need Migration Help

2020-06-25 Thread Alina Kazi
We have successfully ported our large application(more than 1000 mxml and as files) from Flex to Royale. It is a step by step process. It will take some time. Most of the APIs are available in Royale as Flex. Mx and spark components are available only namespaces needs to be change. As Royale is

Re: Need Migration Help

2020-06-25 Thread Harbs
Is it or ? You need to use fx:Script. > On Jun 25, 2020, at 11:13 AM, Sohail Abdul Khaliq wrote: > > Hi > I am having issue with some mx imports > > import mx.resources.IResourceManager; > import mx.resources.ResourceManager; > import mx.rpc.AsyncToken; > import mx.rpc.IResponder; > import

Re: Need Migration Help

2020-06-25 Thread Sohail Abdul Khaliq
Hi I am having issue with some mx imports import mx.resources.IResourceManager; import mx.resources.ResourceManager; import mx.rpc.AsyncToken; import mx.rpc.IResponder; import mx.rpc.remoting.mxml.RemoteObject; import mx.binding.utils.BindingUtils; import mx.events.FlexEvent; these imports does

Re: Need Migration Help

2020-06-25 Thread Harbs
Re. the amount of time: It really depends on how many features you are using which don’t have a direct replacement. Narrowing down the number of errors to a manageable amount should give a clearer picture, and that shouldn’t take more than a couple of days. Post any questions you have along

Re: Need Migration Help

2020-06-25 Thread Harbs
Search and replace for imports which have a direct replacement is a good way to do it. That should help get rid of a lot of errors. Harbs > On Jun 25, 2020, at 7:34 AM, Sohail Abdul Khaliq wrote: > > i have a large scale Application in Flex and i now want to migrate from Flex > to Apache