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
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
/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)
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