Apache Royale on LinkedIn! Join us!

2018-05-02 Thread Carlos Rovira
Hi all just want to announce that we're now on LinkedIn!! The new Apache Royale group is a very cool site to post conversations and as well something very important for the health of this community: Jobs! :) So come on and join us! Here's the link to the group:

Re: New blog example to review

2018-05-02 Thread Facturación
Hi Olaf, thanks!, I must to say that I'm really impressed that it looks "so good" in IE11, when I tried the initial JewelExample in IE11 it looks so awful. One of the things I want to look at ASAIC is layouts since is one of the main building blocks so we need to have the most used completely

Re: New blog example to review

2018-05-02 Thread Olaf Krueger
Hi Carlos, thanks for another nice Blog example!!! I would just like to mention that your example doesn't work properly in IE11 (styles/layout issues) [1]. This is no issue for myself (No need to support IE11) but if I remember it correctly you would like to support IE11 also someday... Thanks,

Re: Newest little Harbs (was Re: Null pointer errors)

2018-05-02 Thread OmPrakash Muppirala
Fantastic news, Harbs. Welcome to the little one :-) Thanks, Om On Wed, May 2, 2018 at 9:10 AM, Dave Fisher wrote: > Harbs! > > Little Flexy! Mazel Tov! > > Regards, > Dave > > > On May 2, 2018, at 9:03 AM, Alex Harui wrote: > > > > That can

New blog example post "Creating a group of Jewel radio buttons"

2018-05-02 Thread Carlos Rovira
Hi folks! A new royale example blog post is live in our website https://royale.apache.org/creating-a-group-of-jewel-radiobuttons/ Check it out! And don't forget to comment and discuss in the post, and follow us on social networks!! If we want Royale to succeed we need your support and talk

Re: New blog example to review

2018-05-02 Thread Carlos Rovira
Thanks Angelo, now is live thanks to Andrew's revision! https://royale.apache.org/creating-a-group-of-jewel-radiobuttons/ :) 2018-05-02 18:59 GMT+02:00 Angelo Lazzari : > Oookkk thanks!!! Great example!!! > El El mié, 2 may 2018 a las 18:52, Carlos Rovira

Re: New blog example to review

2018-05-02 Thread Carlos Rovira
Hi Angelo, no, that's normal, in "pre" site, the example doesn't show. It's only visible in "prod" site, since is a resource not managed by wordpress thanks! 2018-05-02 18:33 GMT+02:00 Angelo Lazzari : > Hi Carlos > I see an error un the App container is that normal?

Re: New blog example to review

2018-05-02 Thread Angelo Lazzari
Hi Carlos I see an error un the App container is that normal? El El mié, 2 may 2018 a las 16:40, Carlos Rovira escribió: > Hi Andrew, > > can you please review the new blog post example here? > > https://royale.codeoscopic.com/creating-a-group-of-jewel-radiobuttons/ >

Re: Null pointer errors

2018-05-02 Thread Alex Harui
Harbs, First, I can't believe you have time to code just after having another baby. But anyway, is your goal to convert these structures to AS or to replicate the Restructure library in AS? Seems like if you want lazy instantiation, you should be using Restructure in AS. That said, in AS, we

Re: Null pointer errors

2018-05-02 Thread Harbs
Here’s a fun one: var MinMax:Struct = new Struct({ minCoord: new Pointer(r.uint16, BaseCoord), // May be NULL maxCoord: new Pointer(r.uint16, BaseCoord), // May be NULL featMinMaxCount:r.uint16,// May be 0 featMinMaxRecords:

Re: Newest little Harbs (was Re: Null pointer errors)

2018-05-02 Thread Dave Fisher
Harbs! Little Flexy! Mazel Tov! Regards, Dave > On May 2, 2018, at 9:03 AM, Alex Harui wrote: > > That can be her middle name. > > -Alex > > PS: Really not liking Outlook 2016 on the Mac. Can't figure out how to enter > emojis. > > On 5/2/18, 9:01 AM, "Harbs"

Re: Newest little Harbs (was Re: Null pointer errors)

2018-05-02 Thread Alex Harui
That can be her middle name. -Alex PS: Really not liking Outlook 2016 on the Mac. Can't figure out how to enter emojis. On 5/2/18, 9:01 AM, "Harbs" wrote: What about Flex? FlexJS? ;-p > On May 2, 2018, at 6:50 PM, Alex Harui

Re: Newest little Harbs (was Re: Null pointer errors)

2018-05-02 Thread Piotr Zarzycki
We are truly family! Choosing name for baby! :) 2018-05-02 18:00 GMT+02:00 Harbs : > What about Flex? FlexJS? ;-p > > > On May 2, 2018, at 6:50 PM, Alex Harui wrote: > > > > Whatever you do, do not name her "Royale" __ > > -- Piotr Zarzycki

Re: Newest little Harbs (was Re: Null pointer errors)

2018-05-02 Thread Peter Ent
Congratulations! I hope all are doing well. ‹peter On 5/2/18, 9:35 AM, "Harbs" wrote: >Well, how about a baby sister? ;-) > >We just had a baby girl about a half hour ago. :-) > >(I¹ll post a picture as soon as I take one.) > >Harbs > >> On May 1, 2018, at 11:33 PM, Alex

Re: Null pointer errors

2018-05-02 Thread Alex Harui
What do some of the actual structs look like? The Restructure library/language looks like an attempt to strongly-type data structures. I've been told that type-inferencing is a key part to performance in JS in the browser. But as we look into the future at other output types, statically

Re: Newest little Harbs (was Re: Null pointer errors)

2018-05-02 Thread Carlos Rovira
Congrats for the new baby Harbs, to you and your wife! Hope the best in this new adventure!! :) Carlos 2018-05-02 16:13 GMT+02:00 Olaf Krueger : > Congratulations! That is great news! > I wish you and your family all the best!! > > Olaf > > > > -- > Sent from:

New blog example to review

2018-05-02 Thread Carlos Rovira
Hi Andrew, can you please review the new blog post example here? https://royale.codeoscopic.com/creating-a-group-of-jewel-radiobuttons/ As you review, I'll be publishing thanks -- Carlos Rovira http://about.me/carlosrovira

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

Re: Newest little Harbs (was Re: Null pointer errors)

2018-05-02 Thread Olaf Krueger
Congratulations! That is great news! I wish you and your family all the best!! Olaf -- Sent from: http://apache-royale-development.20373.n8.nabble.com/

Re: Newest little Harbs (was Re: Null pointer errors)

2018-05-02 Thread Angelo Lazzari
Congrats Harbs!!! and welcome to the new arrived! El mié., 2 may. 2018 a las 15:58, Piotr Zarzycki () escribió: > Wow! :) Congrats! Looking forward to the first contribution! :) > > 2018-05-02 15:54 GMT+02:00 Harbs : > > > Thanks! Good one! :-D >

Re: Newest little Harbs (was Re: Null pointer errors)

2018-05-02 Thread Piotr Zarzycki
Wow! :) Congrats! Looking forward to the first contribution! :) 2018-05-02 15:54 GMT+02:00 Harbs : > Thanks! Good one! :-D > > Here’s me with the little one: > https://www.dropbox.com/s/1t64p020n7jw4e2/IMG_4571.JPG?dl=0 < >

Re: Newest little Harbs (was Re: Null pointer errors)

2018-05-02 Thread Dany Dhondt
Congratulations!!! That's definitely a royale gift! -d Op 2 mei 2018 om 15:35 uur uur schreef Harbs : Well, how about a baby sister? ;-) We just had a baby girl about a half hour ago. :-) (I’ll post a picture as soon as I take one.) Harbs On May 1, 2018, at 11:33 PM,

Newest little Harbs (was Re: Null pointer errors)

2018-05-02 Thread Harbs
Well, how about a baby sister? ;-) We just had a baby girl about a half hour ago. :-) (I’ll post a picture as soon as I take one.) Harbs > On May 1, 2018, at 11:33 PM, Alex Harui wrote: > > I can think of better graduation gifts than the chance to learn the compiler

Re: Royale CLI issues

2018-05-02 Thread Dany Dhondt
:) nice to know that messing things up makes your day My aim is to expand the Hello world app to a real boilerplate app in which a basic layout is used and where most common components are shown.  I would also like to implement one server call (which might return some json) to get people

Re: [royale-website] branch asf-site updated: add alina kazi to committers in team page

2018-05-02 Thread Carlos Rovira
Hi Alina, ok, I'm back and the data is now in pre. As I'm preparing new blog post, I'll update website as I finish it in the day thanks! 2018-04-30 13:16 GMT+02:00 Alina Kazi : > Hi Piotr, > > I am sending him account details. > > Thanks, > Alina > > -Original

Re: Null pointer errors

2018-05-02 Thread Harbs
Nope. They are data structures that are constructed from binary data. They are also generally lazily initialized (which makes a huge difference in performance and memory footprint). Basically, there are tens of tables which might, or might not exist in any given font. The tables might or might

Re: Royale CLI issues

2018-05-02 Thread Dany Dhondt
my-royale-app dany$  > node -v v8.11.1 my-royale-app dany$  > npm -v 6.0.0 -Dany Op 2 mei 2018 om 09:19 uur uur schreef OmPrakash Muppirala : Ah that makes more sense. It looks like mxmlc (the compiler) is not able to access the Main.mxml file. So, it fails at the

Re: Royale CLI issues

2018-05-02 Thread OmPrakash Muppirala
Ah that makes more sense. It looks like mxmlc (the compiler) is not able to access the Main.mxml file. So, it fails at the compilation step. Instead of erroring out right away, the server tries to load a non existent index.html. As someone mentioned earlier, this might be because of the npm

Re: Null pointer errors

2018-05-02 Thread Alex Harui
Are the objects JSON objects? We have a utility that tries to convert JSON to AS3 ValueObjects by guessing the data types. If the objects are externally instantiated, then you only really need typedefs and can avoid the memory overhead of the definitions. -Alex On 5/1/18, 11:40 PM, "Harbs"

Re: Royale CLI issues

2018-05-02 Thread Dany Dhondt
this is the complete error listing: my-royale-app dany$  > royale serve:debug Compiling... WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by com.google.common.base.internal.Finalizer

Re: Royale CLI issues

2018-05-02 Thread OmPrakash Muppirala
On Tue, May 1, 2018 at 11:59 PM, Harbs wrote: > The bin folder is created by the compiler while compiling the app. I have > not been following this discussion very closely. What are you using to > compile? > Please follow the steps here:

Re: Royale CLI issues

2018-05-02 Thread Harbs
The bin folder is created by the compiler while compiling the app. I have not been following this discussion very closely. What are you using to compile? > On May 2, 2018, at 9:48 AM, Dany Dhondt wrote: > > Hi Om, > > I tried both ways, none of them works. > Error: ENOENT:

Re: Royale CLI issues

2018-05-02 Thread OmPrakash Muppirala
On Tue, May 1, 2018 at 11:48 PM, Dany Dhondt wrote: > Hi Om, > > I tried both ways, none of them works. > > Error: ENOENT: no such file or directory, open '/Volumes/Macintosh > HD/Documents/ARCHEMEDIA/ROYALE/my-royale-app/bin/js-debug/index.html' > > > > > > Can I see the

Re: Royale CLI issues

2018-05-02 Thread Dany Dhondt
Hi Om, I tried both ways, none of them works. Error: ENOENT: no such file or directory, open '/Volumes/Macintosh HD/Documents/ARCHEMEDIA/ROYALE/my-royale-app/bin/js-debug/index.html'     My question is: shouldn't the 'new' command create more than just one mxml file? What script is

Re: Null pointer errors

2018-05-02 Thread Harbs
Well, with font parsing there are SOOO MANY different data structures that it’s almost impossible to avoid using Object. Even if it was possible (which I’m not sure of), it’ll probably take me weeks or months and countless classes (with all the memory penalties of doing so) to cover all the

Royale CLI issues

2018-05-02 Thread OmPrakash Muppirala
On Tue, May 1, 2018 at 11:15 PM, Dany Dhondt wrote: > Alex, > > The version number here came from package.json so it should have been > updated by someone. > > I reinstalled from the link you provided with no problem. > But running the royale server:debug [1] command gives me

Re: Null pointer errors

2018-05-02 Thread Alex Harui
Hmm. That's what you get for using Object __ The code expects the expression for the initial value to resolve to a definition (so we know if we need to coerce it), but once you switch to Object, it won't resolve. In this case,we don't know the type of "offsets". The quick fix is to just

Re: NPM Issues (was Re: [Discussion] "Life after FlashPlayer" post @flex lists)

2018-05-02 Thread OmPrakash Muppirala
On Tue, May 1, 2018 at 11:16 PM, Alex Harui wrote: > I think that's a bug in releasecandidate.xml. When you run the release > target, it calls the update.versions target before reminding you to run the > release.npm target. It did not occur to me that the publishing

Re: Null pointer errors

2018-05-02 Thread Harbs
FYI, I just tried reverting some changes, and it seems that not all the errors were due to void 0: This code: var glyfPos:int = this._font.getTable('loca').offsets[this.id]; var nextPos:int = this._font.getTable('loca').offsets[this.id + 1];

Re: NPM Issues (was Re: [Discussion] "Life after FlashPlayer" post @flex lists)

2018-05-02 Thread Dany Dhondt
Hi Alex, package.json which is the default file npm picks up -Dany Op 2 mei 2018 om 06:45 uur uur schreef Alex Harui : OK, but what file would contain that string such that it shows up then? Thanks, -Alex On 5/1/18, 9:32 PM, "OmPrakash Muppirala"

Re: NPM Issues (was Re: [Discussion] "Life after FlashPlayer" post @flex lists)

2018-05-02 Thread Alex Harui
I think that's a bug in releasecandidate.xml. When you run the release target, it calls the update.versions target before reminding you to run the release.npm target. It did not occur to me that the publishing grabbed files other than the tar.gz (which should have the right version in its

Re: [Discussion] "Life after FlashPlayer" post @flex lists (Was: Royale Frameworks and More)

2018-05-02 Thread Dany Dhondt
Alex, The version number here came from package.json so it should have been updated by someone. I reinstalled from the link you provided with no problem. But running the royale server:debug [1] command gives me the same errors as before. I noticed that when running: royale new  

Re: NPM Issues (was Re: [Discussion] "Life after FlashPlayer" post @flex lists)

2018-05-02 Thread OmPrakash Muppirala
As per git history, this file was updated from 0.9.2 to 0.9.3 on 3/16/2018 at around 10:40AM : https://github.com/apache/royale-asjs/commit/2e6923440655c2c2314a9f3e2e1d91fa745cd6e2#diff-6515d4243f4018bb4527c9184823da7f According to https://www.npmjs.com/org/apache-royale, the 0.9.3 release was