Moonshine-IDE.com -- FlexJS, Flex, and ActionScript focused open source IDE -- contribution to Apache FlexJS ?

2016-03-31 Thread Justin M. Hill
Hi Alex, Om, Justin, and the rest of the FlexJS team and contributors. I am looking forward to seeing you on Monday at the FlexJS event. Dhwani will also be attending the meeting. Unfortunately, Santanu, Kinjal, Joel, Bing, and Atin will not be able to attend. However, they are hard at work te

[FLEXJS] Wiki

2016-03-31 Thread Alex Harui
I just realized how stale some of the FlexJS wiki pages are. I will be spending some time trying to get them updated before the event. I'm just notifying folks now so nobody else tries to get in there last minute as well. Thanks, -Alex

Re: flexjs sorton

2016-03-31 Thread Alex Harui
On 3/31/16, 7:58 PM, "lizhi" wrote: >it is js ,best way is use js array sort( sortfunc) All FlexJS code, even what ends up in .js files is actually written in ActionScript and cross-compiled. So anyone volunteering to write sortOn, please write it in ActionScript. It should cross-compile cle

Re: flexjs sorton

2016-03-31 Thread lizhi
it is js ,best way is use js array sort( sortfunc) -- View this message in context: http://apache-flex-development.247.n4.nabble.com/flexjs-sorton-tp52094p52110.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: flexjs sorton

2016-03-31 Thread Nimai
I thought there might be useful code in the redtamarin project. I found the unit test implementation in ActionScript. But, the source for the actual Array sortOn is written in C++, of course. https://github.com/Corsaair/redtamarin/search?utf8=%E2%9C%93&q=sortOn ActionScript's Array sortOn has a

Re: The Class type

2016-03-31 Thread Alex Harui
On 3/31/16, 7:44 PM, "Josh Tynjala" wrote: >The constructor property probably returns a Function in JavaScript. That's what the GCC externs says, but that caused problems for us, so it is currently hacked to return "Class". IIRC, if it returns Function you can't access any properties on it. D

[VOTE] Release Apache FlexJS 0.6.0 RC3

2016-03-31 Thread Alex Harui
Hi, This is vote for the 0.6.0 release of Apache FlexJS. The release candidate can be found here; https://dist.apache.org/repos/dist/dev/flex/flexjs/0.6.0/rc3/ Before voting please review the section,'What are the ASF requirements on approving a release?', at: http://www.apache.org/dev/release.h

Re: [FlexJS] Using externs swc, how to specify js path

2016-03-31 Thread Josh Tynjala
Yep, you need to use -external-library-path instead. An externs SWC only defines the APIs for compile-time checks. The real code needs to come from a

[DISCUSS] Discuss Release Apache FlexJS 0.6.0 RC3

2016-03-31 Thread Alex Harui
This is the discussion thread. Changes in this RC include: -Remove the GCL crypt folder from the binary package. -Upgrade Selenium for Firefox 45 FWIW, I diff's RC2 and RC3 and it correctly reports the crypt folder missing. The SWCs will report as different since they are zipped with timestamps.

Re: The Class type

2016-03-31 Thread Josh Tynjala
The constructor property probably returns a Function in JavaScript. - Josh On Mar 31, 2016 7:19 PM, "Nimai" wrote: > Any support for the "constructor" property for Objects in FalconJX? > > http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/Object.html#constructor > > Right now th

[CANCEL][VOTE] Release Apache FlexJS 0.6.0 RC2

2016-03-31 Thread Alex Harui
Bundled GCL may have crypt export issues. On 3/29/16, 10:22 PM, "Alex Harui" wrote: >Hi, > >This is vote for the 0.6.0 release of Apache FlexJS. > >The release candidate can be found here; >https://dist.apache.org/repos/dist/dev/flex/flexjs/0.6.0/rc2/ > >Before voting please review the section,'

Re: [FlexJS] Using externs swc, how to specify js path

2016-03-31 Thread Alex Harui
Looks like angular is on the regular -library-path not the -external-library-path -Alex On 3/31/16, 7:32 PM, "OmPrakash Muppirala" wrote: >How do I specify the path to a js file to the compiler? Is there a >compiler var I can set? > > >I am trying add support for AngularJS/Angular Material Des

Re: The Class type

2016-03-31 Thread Alex Harui
I might play around with adding a Class type to js.swc, but not for another week or so. In the meantime, we have special asdoc 'directives' you can use. /** * @flexjsignorecoercion Class */ Public function MyFunction() { var c2:Class = this["constructor"] as Class; } Should then result in:

[FlexJS] Using externs swc, how to specify js path

2016-03-31 Thread OmPrakash Muppirala
How do I specify the path to a js file to the compiler? Is there a compiler var I can set? I am trying add support for AngularJS/Angular Material Design using FalconJX. I am building angular.swc and angularmaterial.swc using Josh's dts2as [1] tool. When I am trying to build an app using FDT li

Re: flexjs sorton

2016-03-31 Thread Alex Harui
I would accept a single AS file. It can be independent of the flexjs sdk. All it needs to take is the same parameters. -Alex On 3/31/16, 6:58 PM, "lizhi" wrote: >sorry,i not skilled build the flexjs sdk. > > > >-- >View this message in context: >http://apache-flex-development.247.n4.nabbl

Re: flexjs build java null bug

2016-03-31 Thread lizhi
inter class bug. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/flexjs-build-java-null-bug-tp52066p52098.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: flexjs sorton

2016-03-31 Thread lizhi
sorry,i not skilled build the flexjs sdk. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/flexjs-sorton-tp52094p52097.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

The Class type

2016-03-31 Thread Nimai
Any support for the "constructor" property for Objects in FalconJX? http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/Object.html#constructor Right now the following translation occurs: [AS3] var c1:Class = Object(this).constructor as Class; var c2:Class = this["co

Re: flexjs sorton

2016-03-31 Thread Alex Harui
Are you volunteering to write it? On 3/31/16, 6:41 PM, "lizhi" wrote: > > > > >-- >View this message in context: >http://apache-flex-development.247.n4.nabble.com/flexjs-sorton-tp52094 >.html >Sent from the Apache Flex Development mailing list archive at Nabble.com.

flexjs sorton

2016-03-31 Thread lizhi
-- View this message in context: http://apache-flex-development.247.n4.nabble.com/flexjs-sorton-tp52094.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: FlexJS with Bootstrap example

2016-03-31 Thread Alex Harui
I would need more details, like some code and the error. -Alex On 3/31/16, 4:04 PM, "dhwanishah85" wrote: >Hi Alex, > >I am trying my hand on Bootstrap/less to get it working with FlexJS from >few >days. >And I am getting namespace error. Can you provide me some details on how >to >contribute

Re: [VOTE] Release Apache FlexJS 0.6.0 RC2

2016-03-31 Thread Justin Mclean
HI, > And how about this for an idea? I will cut an RC3 tonight that is the > same package but without the crypt folder? We can still get it 72 hours > of voting in before the event. As RM you can do what you want. If you do make a new RC I’ll compare changes to previous and review it as quic

Re: FlexJS with Bootstrap example

2016-03-31 Thread dhwanishah85
Hi TeotiGraphix, I am glad to see that I am using your framework and also got chance to communicate with you. We are using FileUtil from your framework. Please provide your feedback about our website - we still need to go much far from this point though. Thanks Dhwani Shah, My Apache Flex

Re: FlexJS with Bootstrap example

2016-03-31 Thread dhwanishah85
Hi Alex, I am trying my hand on Bootstrap/less to get it working with FlexJS from few days. And I am getting namespace error. Can you provide me some details on how to contribute into FlexJS and how can I start changing and experimenting codes in FlexJS CSS? Dhwani Shah, My Apache Flex community

Re: [VOTE] Release Apache FlexJS 0.6.0 RC2

2016-03-31 Thread Justin Mclean
Hi, > It’s wasn’t the closure library, as I don’t know of any other project > bundling that. It was the MADlib project which use Blowfish [1] which is > similar (and mostly replaced by) AES [2]. Sorry it was HAWQ not MabLib, Roman Shaposhnik is involved with both it may be best to ask him. Th

Re: FlexJS with Bootstrap example

2016-03-31 Thread Michael Schmalle
HA, I see you are using ASBlocks! I wrote that framework like 6 years ago, hahaha that is to funny! It's still in my github repos. https://github.com/teotigraphix/as3-commons-asblocks Can I ask how you are using it, just code generation? That is SO COOL! It finally got used! Mike On Thu, Mar 3

Re: [VOTE] Release Apache FlexJS 0.6.0 RC2

2016-03-31 Thread Justin Mclean
Hi, > Which podling removed Google closure library? I'd to read their reasons. It’s wasn’t the closure library, as I don’t know of any other project bundling that. It was the MADlib project which use Blowfish [1] which is similar (and mostly replaced by) AES [2]. Thanks, Justin 1. https://en.

Re: FlexJS with Bootstrap example

2016-03-31 Thread Michael Schmalle
Ok, just had an idiot moment, I have been reading to much today, the source code link is in bold on your site. :) Mike On Thu, Mar 31, 2016 at 7:04 PM, Michael Schmalle wrote: > @Dhwani > > Interesting project. You have put a lot of time into it I can see. > > Since it's built in AS, are you ke

Re: FlexJS with Bootstrap example

2016-03-31 Thread Michael Schmalle
@Dhwani Interesting project. You have put a lot of time into it I can see. Since it's built in AS, are you keeping it closed source or did I miss a source code link? I noticed you have the notion of plugins, is this something an outside developer can extend in the IDE to add functionality outsid

Re: [VOTE] Release Apache FlexJS 0.6.0 RC2

2016-03-31 Thread Alex Harui
And how about this for an idea? I will cut an RC3 tonight that is the same package but without the crypt folder? We can still get it 72 hours of voting in before the event. Thoughts? -Alex On 3/31/16, 3:36 PM, "Alex Harui" wrote: >Which podling removed Google closure library? I'd to read thei

Re: FlexJS with Bootstrap example

2016-03-31 Thread dhwanishah85
Hi Om, I have tried this before. But they are using pure actionscript and it is not helpful to what we are working on. Thanks Dhwani Shah, My Apache Flex community contribution is working on the open source Moonshine-IDE.com for FlexJS. -- View this message in context: http://apache-flex-dev

Re: [VOTE] Release Apache FlexJS 0.6.0 RC2

2016-03-31 Thread Alex Harui
Which podling removed Google closure library? I'd to read their reasons. Sent from my LG G3, an AT&T 4G LTE smartphone -- Original message-- From: Justin Mclean Date: Thu, Mar 31, 2016 2:43 PM To: dev@flex.apache.org; Subject:Re: [VOTE] Release Apache FlexJS 0.6.0 RC2 Hi, > Those

Re: Heat maps for falcon and asjs

2016-03-31 Thread Justin Mclean
Hi, > I've tried the URLs and I keep getting server timeouts. Odd as it’s just static files on Amazon S3, but thanks for trying. Justin

Re: [VOTE] Release Apache FlexJS 0.6.0 RC2

2016-03-31 Thread Justin Mclean
Hi, > Those files are bundled from Google Closure Library. I opened a ticket > [13] to see if they have or require an ECCN. In looking at the code, it > doesn’t. How do you come to that conclusion? [1][2] > Did you see anything that would require it? As I said I’m not 100% sure. [3] Another

Re: Heat maps for falcon and asjs

2016-03-31 Thread Peter Ent
Hi, I've tried the URLs and I keep getting server timeouts. I know its not my internet connection. Sorry. I'll try after I get back from our event next week. ‹peter On 3/31/16, 1:35 AM, "Justin Mclean" wrote: >Hi, > >Know people are a little busy but I¹d appreciate some feedback. I will be >ta

Re: [FlexJS] Apache FlexJS Event in San Francisco April 4

2016-03-31 Thread Carlos Rovira
If you can export from Adobe Connect to FLV, then upload to youtube, that would be great... Even, have an Oficial Apache Flex Youtube account would be great :) 2016-03-31 19:47 GMT+02:00 Alex Harui : > Well of course typical conference video would be better, but > unfortunately, I only have littl

Re: [FlexJS] Apache FlexJS Event in San Francisco April 4

2016-03-31 Thread OmPrakash Muppirala
YouTube has a live streaming option. I will experiment with it a bit and see if that is a good option. Anyone willing to help me out with this test? Thanks, Om On Mar 31, 2016 10:48 AM, "Alex Harui" wrote: > Well of course typical conference video would be better, but > unfortunately, I only

Re: [FlexJS] Apache FlexJS Event in San Francisco April 4

2016-03-31 Thread Alex Harui
Well of course typical conference video would be better, but unfortunately, I only have little time and little experience or expertise with video. Maybe other attendees will figure out how to do it, but all I can try to do is use Connect. Apparently Connect will export an FLV that I can post some

Re: [FlexJS] Apache FlexJS Event in San Francisco April 4

2016-03-31 Thread Carlos Rovira
Hi Alex, from the usability point of view I'd propose a think like this: https://www.youtube.com/watch?v=spKJ2jbnVI8&list=PLa1F2ddGya__l2Tk4zzq8c6CNGPCjQaS4 This is the Blender Conference 2015, just an example... This guys record in separate videos and the upload all of them to the youtube acco

Re: [FlexJS] Apache FlexJS Event in San Francisco April 4

2016-03-31 Thread Alex Harui
On 3/31/16, 9:06 AM, "carlos.rov...@gmail.com on behalf of Carlos Rovira" wrote: >Hi, > >I think it would be very important to make it available in youtube. >Did you think about recording and publishing for people coming in the >forthcoming months. I just spent some time trying to figure out h

Re: [FlexJS] Apache FlexJS Event in San Francisco April 4

2016-03-31 Thread Carlos Rovira
Hi, I think it would be very important to make it available in youtube. Did you think about recording and publishing for people coming in the forthcoming months. This kind of videos showcasing this new technology used to be great to make people from outside come and know about FlexJS and (potenti

Re: [VOTE] Release Apache FlexJS 0.6.0 RC2

2016-03-31 Thread Michael Schmalle
I won't vote with a binding vote but I did use the installer to install RC2, ran the installer script and compiled an app in IntelliJ. All worked fine. Mike On Thu, Mar 31, 2016 at 11:40 AM, Alex Harui wrote: > > > On 3/31/16, 4:03 AM, "Justin Mclean" wrote: > > > >The bigger issue is that is

Re: [VOTE] Release Apache FlexJS 0.6.0 RC2

2016-03-31 Thread Alex Harui
On 3/31/16, 4:03 AM, "Justin Mclean" wrote: > >The bigger issue is that is looks like there is crypto code bundled here >[11]. I’m not 100% sure if it required but have we followed the policy >here [12] and informed the US government? >11. ./js/lib/google/closure-library/closure/goog/crypt >12.

Re: Heat maps for falcon and asjs

2016-03-31 Thread Justin Mclean
HI, > I tried looking at it, but I was having trouble understanding what I was > looking at. Think of It a bird eye view of the code base which you can click on to zoom in on. The red colour indicated areas of greater change and complexity. See my other reply for a bit more detail. Thanks for

Re: Heat maps for falcon and asjs

2016-03-31 Thread Justin Mclean
Hi, > I've not so much experience with code metrics so it's hart to understand for > me. It would be helpful to know how to interpret the visualization, e.g. > what is the meaning of the size, color, position and nesting of a bubble? Without context it does need a little explaining. The nesting

Re: [VOTE] Release Apache FlexJS 0.6.0 RC2

2016-03-31 Thread Justin Mclean
Hi, -1 binding due to crypto code included in binary. If that resolved I would be +0 as I still can’t compile from the source package. If that was resolved I’d vote +1. I checked the following: - Signatures and hashes good - Source NOTICE+ LICENSE is OK - Binary NOTICE is OK - Binary LICENSE h

Re: Heat maps for falcon and asjs

2016-03-31 Thread OK
Justin Mclean wrote > May be a few false positives but I’d be interested to see if anyone finds > it of use. I've not so much experience with code metrics so it's hart to understand for me. It would be helpful to know how to interpret the visualization, e.g. what is the meaning of the size, color,

flexjs build java null bug

2016-03-31 Thread lizhi
https://github.com/matrix3d/spriteflexjs run https://github.com/matrix3d/spriteflexjs/blob/master/test/build.bat D:\proj\git\spriteflexjs\test\src\TestTMX.as 在为以下对象生成代码时,ABC generator 子系统中发生内部错误: D:\proj\git\spriteflexjs\test\src\TestTMX.as: java.lang.Null PointerException at org.apache.

Re: Heat maps for falcon and asjs

2016-03-31 Thread Harbs
I tried looking at it, but I was having trouble understanding what I was looking at. On Mar 31, 2016, at 8:35 AM, Justin Mclean wrote: > Hi, > > Know people are a little busy but I’d appreciate some feedback. I will be > talking about this and the more input I get the more the talk will be ab