[FlexJS, AMF] Steps to make FlexJS / Java - RemoteObject / AMF sample work

2017-09-05 Thread Carlos Rovira
Hi, to people interested in make AMF sample work here is what I did: 1.- Use the following branches: flex-falcon:develop flex-type-defs:feature/amf flex-asjs:feature/amf build each one in that order with "mvn clean install" (you can add -DskipTests to avoid run tests) 2.-

Re: [FlexJS] Re: Remote object for Flex JS

2017-09-05 Thread Carlos Rovira
That was the problem I have the test working! :)[image: Imágenes integradas 2] 2017-09-05 20:18 GMT+02:00 Alex Harui : > Hi Carlos, > > Try switching flex-falcon to the develop branch. I think the RemoteClass > handling is in the develop branch and not feature/amf. > > -Alex > > On 9/5/17, 10:56

Re: FlexJS installation - Installer vs. npm

2017-09-05 Thread Alex Harui
Om, That error implies that js.swc or playerglobal.swc/airglobal.swc isn't being found. See if NPM install is putting them in the right place. Then, those SWCs have to be referenced by whatever -config.xml file in being used, and there are sensitivities in 0.8.0 with dual mode about whether you

FlexJS installation - Installer vs. npm

2017-09-05 Thread OmPrakash Muppirala
I am trying to debug a problem with Visual Studio Code integration. The FlexJS 0.8.0 SDK that I installed with `npm install flexjs -g` does not work with VSCode. It fails with this error: Error: Missing builtin type Object (1,1) More details here: https://github.com/BowlerHatLLC/vscode-nextgenas

Re: [FlexJS] Re: Remote object for Flex JS

2017-09-05 Thread Alex Harui
Hi Carlos, Try switching flex-falcon to the develop branch. I think the RemoteClass handling is in the develop branch and not feature/amf. -Alex On 9/5/17, 10:56 AM, "carlos.rov...@gmail.com on behalf of Carlos Rovira" wrote: >Hi Alex, > >thanks, I know start to remember. That two scaffold pr

Re: [FlexJS] Re: Remote object for Flex JS

2017-09-05 Thread Carlos Rovira
Hi Alex, thanks, I know start to remember. That two scaffold projects was created by me in February and I left it incomplete and created based on PKumar and Chris Dutz help. Is great that you get it to work! :) Know I'm trying to build with maven, so I put all 3 repos in brach "feature/amf", upda

Re: Kotlinjs has solved the circular dependency problem. Flexjs, do you have any plans?

2017-09-05 Thread Harbs
Changing this made MouseTest run: - public static var renderer:IRenderer = new BaseRenderer; + private static var _renderer:IRenderer; + public static function get renderer():IRenderer + { + if(!_renderer) +

[RESULT][VOTE] Fork FlexJS from Apache Flex

2017-09-05 Thread Alex Harui
Results are: +1 - 16 +0 - 1 -1 - 2 I will post our proposal on board@ for their feedback and possible inclusion on the September board meeting agenda. Thanks, -Alex On 8/31/17, 11:28 PM, "Alex Harui" wrote: >Hi folks, > >Here is the vote thread. Please vote on whether to submit the proposal

Re: [VOTE] Fork FlexJS from Apache Flex

2017-09-05 Thread Alex Harui
+1 from me. On 8/31/17, 11:28 PM, "Alex Harui" wrote: >Hi folks, > >Here is the vote thread. Please vote on whether to submit the proposal >below to the board. Please use +1 for yes, -1 for no, and if you want, >any number in-between per [1]. Only PMC member votes will be used to >determine t

Re: Kotlinjs has solved the circular dependency problem. Flexjs, do you have any plans?

2017-09-05 Thread Alex Harui
Again, please try to find small test cases that reproduce these bugs. As Harbs showed, details matter. The fact that you were trying to initialize a static variable with a function might matter in these cases. Thanks, -Alex On 9/5/17, 3:20 AM, "lizhi" wrote: >But I feel the spriteflexjs libra

Re: [FlexJS] Re: Remote object for Flex JS

2017-09-05 Thread piotrz
Hi Prashant, Unfortunately it is not available in the nightly build yet. In order to check it you will have to build yourself FlexJS SDK. Branch feature/amf . We probably need someone who just check how Alex's changes are working and then someone will merge it. You can use Maven to build SDK [1]

> 5000 video calls / day!

2017-09-05 Thread Erik de Bruin
Hi, This morning my eye fell on this encouraging statistic: the splicers for the first time had to process more than 5000 video calls a day last week. This is up from < 2000 this time last year. Go Homewav! EdB -- Ix Multimedia Software Jan Luykenstraat 27 3521 VB Utrecht T. 06-51952295 I.

Re: Kotlinjs has solved the circular dependency problem. Flexjs, do you have any plans?

2017-09-05 Thread lizhi
But I feel the spriteflexjs library has been wasted. Because a lot of test examples are wrong now. Uncaught TypeError: Cannot read property 'BaseRenderer' of undefined at SpriteFlexjs.js:91 Language.js:238 power by SpriteFlexJS Graphics.js:442 Uncaught TypeError: Cannot read property 'createPa

Re: [VOTE] Fork FlexJS from Apache Flex

2017-09-05 Thread Tom Chiverton
+1 People being on/not on the project board can be resolved after the split. Tom On 01/09/17 09:43, Yishay Weiss wrote: +1 From: Alex Harui Sent: Friday, September 1, 2017 9:28 AM To: dev@flex.apache.org Subject: [VOTE] Fork FlexJS

Re: Kotlinjs has solved the circular dependency problem. Flexjs, do you have any plans?

2017-09-05 Thread lizhi
Thank you very much! Well, I also know there's a setTimeout, but this setTimeout is only JS built, so I don't care. However, it seems that the new version of the flexjs compiler has problems dealing with static classes. And flexjs0.8 doesn't have that problem. - spriteflexjs.com -- Sent fro

Re: Kotlinjs has solved the circular dependency problem. Flexjs, do you have any plans?

2017-09-05 Thread Harbs
BTW, The problem is probably related to the fact that you have a static var referencing the top level function. I found the problem by searching the JS files to “setTimeout”. SpriteFlexjs.js was the only file which had it listed in the dependency list. HTH, Harbs > On Sep 5, 2017, at 12:33 PM,

Re: Kotlinjs has solved the circular dependency problem. Flexjs, do you have any plans?

2017-09-05 Thread Harbs
Lizhi, Your problem is in SpriteFlexjs where you have the following output: /* FlexJS Static Dependency List: flash.__native.BaseRenderer,setTimeout*/ The compiler thinks there’s a dependency on a setTimeout class. That’s caused by this code: public static var requestAnimationF

Re: Kotlinjs has solved the circular dependency problem. Flexjs, do you have any plans?

2017-09-05 Thread lizhi
no error too. package { import flash.utils.setTimeout; public class TestBug { public function TestBug() { new TestBug2(); setTimeout(function():void{trace("se")}, 100);