Helping Spread the Word about Apachecon EU 2016

2016-07-14 Thread Sharan Foga
Hi Everyone I'm forwarding the following message on behalf of Rich Bowen and the Apachecon team === As you are aware, we are holding ApacheCon in Seville in November. While this seems like a long way away, it is critical that we get on people's calendar now, so that they can plan, get b

Re: FlexJS question - ByteArray vs. BinaryData

2016-07-14 Thread Harbs
Monkey patching does not work very well. Here’s my setup (on Mac — Windows is similar): 1) Follow the instructions here to get your basic environment setup: https://cwiki.apache.org/confluence/display/FLEX/FlexJS+Developer+Setup 2) If you want to use Flash Builder, read the section on Flash Bui

Re: FlexJS question - ByteArray vs. BinaryData

2016-07-14 Thread Harbs
FYI, I just added an “array” getter which returns the underlying array of bytes. The exact type is different on the different platforms. Alex, I tried to make the type “TypedArray” instead of “Uint8Array” on the JS side, but TypedArray was not recognized for some reason. Any ideas on why that m

Auto-Re: Helping Spread the Word about Apachecon EU 2016

2016-07-14 Thread kjczxl

Re: FlexJS question - ByteArray vs. BinaryData

2016-07-14 Thread Alex Harui
On 7/14/16, 2:38 AM, "Harbs" wrote: >FYI, I just added an “array” getter which returns the underlying array of >bytes. The exact type is different on the different platforms. > >Alex, I tried to make the type “TypedArray” instead of “Uint8Array” on >the JS side, but TypedArray was not recognize

Re: FlexJS question - ByteArray vs. BinaryData

2016-07-14 Thread Alex Harui
On 7/13/16, 11:33 PM, "Greg Dove" wrote: >Harbs and Alex, thanks for your explanations. > >I guess 'drop-in' replacement is quite unrealistic. But I think if could >be >closer to the IDataInput/IDataOutput, and given that ByteArray is a common >utility class in many libraries, particularly for

Re: FlexJS question - ByteArray vs. BinaryData

2016-07-14 Thread Harbs
This page says that Uint8Array inherits its prototype from TypedArray[2] which is referenced here.[3] [2]https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array [3]https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/proto

Re: FlexJS question - ByteArray vs. BinaryData

2016-07-14 Thread Alex Harui
On 7/14/16, 9:28 AM, "Harbs" wrote: >This page says that Uint8Array inherits its prototype from TypedArray[2] >which is referenced here.[3] > >[2]https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Globa >l_Objects/Uint8Array >[3]https://developer.mozilla.org/en-US/docs/Web/JavaSc

Re: FlexJS question - ByteArray vs. BinaryData

2016-07-14 Thread Greg Dove
Thanks Harbs, I am on windows, but did something similar with a windows batch file. Instructions here [1] are also similar but include a couple of differences: 1. playerglobal seems to be required as 11.1. When I tried using a more recent playerglobal version as per those instructions I had to upd

Re: FlexJS question - ByteArray vs. BinaryData

2016-07-14 Thread Greg Dove
Oh I see that issue I mentioned below was only a change that happened today. "js-config-template (plus jquery and node): added missing reference to Core.swc, which is required for org.apache.flex.utils.Language" So if the above change is necessary then the ant build scripts should probably chang