Jenkins build is back to normal : royale-asjs_MXTests #203

2018-11-30 Thread apacheroyaleci
See

Build failed in Jenkins: royale-asjs_MXTests #202

2018-11-30 Thread apacheroyaleci
See -- [...truncated 2.33 MB...] [mxmlc] using source file:

Re: Numbers assigned to int

2018-11-30 Thread Harbs
The problem is pretty common in things like binary searches as well. I’ve run into invalid indexes more than once. I do agree that we generally don’t want to add the extra code though… Harbs > On Nov 30, 2018, at 4:10 PM, Alex Harui wrote: > > Hi, > > There is some old Flex code that does

Numbers assigned to int

2018-11-30 Thread Alex Harui
Hi, There is some old Flex code that does this: var r:int = Math.random() * 5; var foo:String = someArray[r]; Flash will automatically run the equivalent of Math.floor() so r will be assigned 0, 1, 2, 3, or 4 and choose an element from the array. In JS right now, r will be a floating

Re: [royale-asjs] branch develop updated: Selectable & Hoverable in Itemrenderers, so we can deactivate the selection feature

2018-11-30 Thread Alex Harui
Hi Carlos, This doesn't seem PAYG to me. ISelectableItemRenderer extends IItemRenderer. IItemRenderer is for non-selectable renderers. If you need to have a renderer that can have its selectability enabled at runtime, that should be in an extension and not in the core. Thanks, -Alex On

Re: Dependency Missing

2018-11-30 Thread Alex Harui
Hmm. Keep in mind that there are two situations: 1) After bin/js-debug is deleted (note that "ant clean" copied from our repos will not report errors if it deleting the wrong folders), JS files are copied from the SWCs and contain lots of goog.requires and a comment containing a list of

Re: [royale-asjs] branch develop updated: add TimerEvent and timerComplete event

2018-11-30 Thread Carlos Rovira
Ok Alex, I reverted it, I thought Timer was incomplete. I think I can pass for now without a complete event. If I need it I'll plan an extension like your sugesstion Thanks! Carlos El jue., 29 nov. 2018 a las 20:20, Alex Harui () escribió: > In the Core, we want to keep PAYG in mind. So for

RE: Dependency Missing

2018-11-30 Thread Yishay Weiss
Oops, spoke too soon. I’m still getting a run-time error: Uncaught TypeError: com.printui.textLayout.elements.Configuration is not a constructor I’m not going to be available for this, this week so maybe Harbs can follow this up in case he runs into it.

Re: Dependency Missing

2018-11-30 Thread Yishay Weiss
Thanks for the explanation. Manually deleting js-debug fixed it. I had thought running ant clean would be sufficient... Anyway, it's working now. From: Alex Harui Sent: Thursday, November 29, 2018 5:14:56 PM To: dev@royale.apache.org Subject: Re: Dependency