RE: Compiler error using static function toString

2018-05-07 Thread Σπύρος Αγγελόπουλος
Done Issue #223 Spiros -Original Message- From: Alex Harui [mailto:aha...@adobe.com.INVALID] Sent: Friday, May 4, 2018 11:39 PM To: dev@royale.apache.org Subject: Re: Compiler error using static function toString Not too surprising... Can you file a GitHub issue with a simple test ca

Bug iterating ArrayList

2018-05-02 Thread Σπύρος Αγγελόπουλος
The code below produce a strange results var ar:ArrayList = new ArrayList; ar.addItem(new String("some value")); var index:int=0; for each (var obj:Object in ar) { index++; } trace ( "for each iteration ="+ index); index =0; for (var i:int=0;i < ar.length ;i++) { index++; } trace ("f

RE: Bug iterating ArrayList

2018-05-03 Thread Σπύρος Αγγελόπουλος
/royale-asjs/issues Thanks, -Alex On 5/2/18, 7:37 AM, "Σπύρος Αγγελόπουλος" wrote: The code below produce a strange results var ar:ArrayList = new ArrayList; ar.addItem(new String("some value")); var index:int=0; for each (var obj:Object in ar)

Missing classes implementation question

2018-05-04 Thread Σπύρος Αγγελόπουλος
Hello everyone A quick question about missing classes. What is the process to implement a class from flex/flash to Royale ? For example I notice that the ByteArray or ArrayCollection Class is missing , so if I implement the class in AS3 language then the compiller will compile to equ. J