Re: Debugging

2019-04-09 Thread Alex Harui
Hi Pashmina, For any .as file, there should be a .js file in the browser debugger. You set breakpoints and figure out what is wrong, then figure out what the ActionScript was that generated the JavaScript and change the ActionScript. I use the search feature in the debuggers to quickly find fu

Re: Debugging

2019-04-09 Thread Carlos Rovira
Hi, compiler can generate source-maps. This is on in almost all maven libraries (Core, Basic, Jewel,...) If you use other kind of build ensure that you are generating source-maps. This is a file with the same name but end in .js.map With that files in place I libraries and in your app you can deb

Re: convert json string to arraylist in royale

2019-04-09 Thread Piotr Zarzycki
Hi Choirul, I think JSON.parse(json); would do for you that job. It's available in Royale. Thanks, Piotr wt., 9 kwi 2019 o 11:52 choirul anam napisaƂ(a): > I have function in my php that return json string like this: > > [{"0":"145","id":"145","1":"1-2016-005","kode":"1-2016-005","2":"1-2016-0

convert json string to arraylist in royale

2019-04-09 Thread choirul anam
I have function in my php that return json string like this: [{"0":"145","id":"145","1":"1-2016-005","kode":"1-2016-005","2":"1-2016-005 (CULZEAN)","keterangan":"1-2016-005 (CULZEAN)"}, {"0":"132","id":"132","1":"1-2016-006A","kode":"1-2016-006A","2":"1-2016-006A (SMOP)","keterangan":"1-2016-006A

RE: Debugging

2019-04-09 Thread Pushmina Kazi
From: Pushmina Kazi [mailto:pushmina.k...@d-bz.com] Sent: Tuesday, April 9, 2019 10:50 AM To: users@royale.apache.org; d...@royale.apache.org Subject: Debugging Hi, Can you please tell me how can I debug my library files (.as) and .swc files with browser debugger? Thanks Pash