Hi Serkan, That part looks ok, but I would expect there is more to it to get it to work from your app. There would probably be changes o MXRoyaleClasses or mx-royale-manifest.xml and all changes should go in a Pull Request.
Thanks, -Alex From: Serkan Taş <[email protected]> Reply-To: "[email protected]" <[email protected]> Date: Monday, March 4, 2019 at 11:10 AM To: "[email protected]" <[email protected]> Subject: Re: Work on Emulation Here it is; //////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF licenses this file to You under the Apache License, Version 2.0 // (the "License"); you may not use this file except in compliance with // the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0<https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.apache.org%2Flicenses%2FLICENSE-2.0&data=02%7C01%7Caharui%40adobe.com%7C6ba07f4b703a4737dc3608d6a0d502f8%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636873234074060065&sdata=OfxkkgAvTE6BDJm29jg%2FqhJMbv61IHd%2FxPvRwfFJCwg%3D&reserved=0> // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // //////////////////////////////////////////////////////////////////////////////// package mx.net { import org.apache.royale.events.EventDispatcher; public class URLLoader extends org.apache.royale.net.URLLoader { override public function dispatchEvent(event:Object):Boolean { try { if(event.type == "httpStatus") { var type:String = event.type; var status:int = event.value; var bubbles:Boolean = false; var cancelable:Boolean = false; event = new HTTPStatusEvent(type, bubbles, cancelable, status); } return super.dispatchEvent(event); } catch (e:Error) { if (e.name != "stopImmediatePropagation") throw e; } return false; } } } 4.03.2019 22:05 tarihinde Alex Harui yazdı: I would like to see you create the class. Thanks, -Alex
