Re: AW: AW: AW: [FLEXJS] Problem compiling Core extern

2016-05-03 Thread Alex Harui
On 5/3/16, 10:58 PM, "Christofer Dutz" wrote: > >Hi Alex, > >I am actually having problems on all levels. When compiling the >JavaScript from the ActionScript I have a problem with CSSTextField as >this is missing the TextField declaration. If I comment out the >COMPILE::JS it works ... this is

AW: AW: AW: [FLEXJS] Problem compiling Core extern

2016-05-03 Thread Christofer Dutz
Hi Alex, I am actually having problems on all levels. When compiling the JavaScript from the ActionScript I have a problem with CSSTextField as this is missing the TextField declaration. If I comment out the COMPILE::JS it works ... this is the same problem I am having for compiling the extern

Re: [FlexJS] extending VerticalColumnLayout

2016-05-03 Thread dhwanishah85
Yeah that is true. I have added tags and strand setter gets called. Now I am looking for event to get dispatch. I will do some trials and will update here.. Thanks dhwani -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-extending-VerticalColumnLayou

Re: [FlexJS] extending VerticalColumnLayout

2016-05-03 Thread Alex Harui
Hi Dhwani, If I'm reading that right, the layout is not in the list of beads. I guess we should create some way to detect errors like that. I think it should be: HTH, -Alex On 5/3/16, 9:12 PM, "dhwanishah85" wr

Re: [FlexJS] extending VerticalColumnLayout

2016-05-03 Thread dhwanishah85
Here are the parent tags: **

Re: [FlexJS] extending VerticalColumnLayout

2016-05-03 Thread Alex Harui
On 5/3/16, 8:25 PM, "dhwanishah85" wrote: >Hi Alex, > >It is used in mxml file like this: > > > What are the parent tags? -Alex

Re: [FlexJS] extending VerticalColumnLayout

2016-05-03 Thread dhwanishah85
Hi Alex, It is used in mxml file like this: -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-extending-VerticalColumnLayout-tp52676p52759.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: AW: AW: [FLEXJS] Problem compiling Core extern

2016-05-03 Thread Alex Harui
BTW, after a closer look, the code you are commenting out is in COMPILE::AS3 blocks which should be false for building an externs swc. -Alex On 5/3/16, 1:06 PM, "Alex Harui" wrote: >If you are going to comment out code, please work in the maven-migration >branch so we don't break everyone else.

Re: [FlexJS] extending VerticalColumnLayout

2016-05-03 Thread Alex Harui
Is your ReponsiveVerticalColumnLayout used in an MXML file or CSS file? On 5/3/16, 4:33 PM, "dhwanishah85" wrote: >Yeah constructor does get called, I have made test by adding an alert >inside >constructor. >VerticalColumnLayout is from here >/Users/dhwanishah/Documents/FlexSDKs/FlexJS0.7.0/fram

Re: [FlexJS] extending VerticalColumnLayout

2016-05-03 Thread dhwanishah85
Yeah constructor does get called, I have made test by adding an alert inside constructor. VerticalColumnLayout is from here /Users/dhwanishah/Documents/FlexSDKs/FlexJS0.7.0/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/layouts -- View this message in context: http://apache-f

Re: [FlexJS] extending VerticalColumnLayout

2016-05-03 Thread Alex Harui
Hmm, and the strand setter never gets called? Does the constructor get called? Is the VerticalColumnLayout on the list of beads in some MXML file or specified via CSS? -Alex On 5/3/16, 4:14 PM, "dhwanishah85" wrote: >Hi Alex, > >Here is the code of the class: > >public class ResponsiveVertica

Re: [FlexJS] extending VerticalColumnLayout

2016-05-03 Thread dhwanishah85
Hi Alex, Here is the code of the class: public class ResponsiveVerticalColumnLayout extends VerticalColumnLayout { public var minColumnWidth:int; //private var _strand:IStrand;

Re: [FALCONJX] Get/Set code (was: superGetter very very slow)

2016-05-03 Thread Alex Harui
On 5/3/16, 2:14 PM, "Harbs" wrote: >Maybe I’m missing something, but why can’t we just use >Object.defineProperty for overridden getters and setters? > >I do understand that the problem is when only one is overridden. We then >need to define the other, but assuming we have access to the ActionS

Re: [FlexJS] extending VerticalColumnLayout

2016-05-03 Thread Alex Harui
On 5/3/16, 3:51 PM, "dhwanishah85" wrote: >Hi Alex, > >I have added the code in BrowserResizeListener. > >Do I need to make any other settings in other files? > >In my custom component I have a function which overrides strand. >override public function set strand(value:IStrand):void >

Re: [FlexJS] extending VerticalColumnLayout

2016-05-03 Thread dhwanishah85
Hi Alex, I have added the code in BrowserResizeListener. Do I need to make any other settings in other files? In my custom component I have a function which overrides strand. override public function set strand(value:IStrand):void { super.strand = value;

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

2016-05-03 Thread Justin Mclean
Hi, > Wordpress themes are usually based off existing templates or forks. In this > case the vanilla theme is a copy of Twenty Twelve. It could be any theme > though. As the current theme is GPL licensed it would be best if it was replaced with something with a more permissive license. You can’t

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

2016-05-03 Thread jude
1 and 4 is Apache license 2.0 2. and the others should be listed in attributions Wordpress themes are usually based off existing templates or forks. In this case the vanilla theme is a copy of

Re: [FALCONJX] Get/Set code (was: superGetter very very slow)

2016-05-03 Thread Harbs
Maybe I’m missing something, but why can’t we just use Object.defineProperty for overridden getters and setters? I do understand that the problem is when only one is overridden. We then need to define the other, but assuming we have access to the ActionScript of the super classes, the compiler

[FALCONJX] Get/Set code (was: superGetter very very slow)

2016-05-03 Thread Alex Harui
I found time to look into this. The current code for a getter/setter uses anonymous functions and Object.defineProperties. So: private var _foo:int; public function get foo():int { return _foo; } public function set foo(value:int):void { _foo = value; } Outputs js like this: Object.defi

Re: AW: AW: [FLEXJS] Problem compiling Core extern

2016-05-03 Thread Alex Harui
If you are going to comment out code, please work in the maven-migration branch so we don't break everyone else. -Alex On 5/3/16, 12:06 PM, "Christofer Dutz" wrote: > >Ok so now I started commenting out stuff that was causing problems, >hoping to solve the problems in paralell. In order to comp

Re: AW: AW: [FLEXJS] Problem compiling Core extern

2016-05-03 Thread Alex Harui
On 5/3/16, 11:53 AM, "Christofer Dutz" wrote: > >It would really be good if we could get together at ApacheCon US and sort >out the compilation problems. To me the current state of the FlexJS / >Extern / Framework feels more and more like something MacGyver banged >together. I will spend the

AW: AW: [FLEXJS] Problem compiling Core extern

2016-05-03 Thread Christofer Dutz
Ok so now I started commenting out stuff that was causing problems, hoping to solve the problems in paralell. In order to compile Binding, I had to comment out Line 258 and 259 of WatcherBase, because I was getting: /Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/Bindin

AW: AW: [FLEXJS] Problem compiling Core extern

2016-05-03 Thread Christofer Dutz
So If I comment out the JavaScript declaration of CSSTextFiled and that one line in ApplicationBase I am actually able to build Core (swc containing JavaScript + extern-swc) Chris Von: Alex Harui Gesendet: Dienstag, 3. Mai 2016 00:08:55 An: dev@flex.apa

AW: AW: [FLEXJS] Problem compiling Core extern

2016-05-03 Thread Christofer Dutz
It would really be good if we could get together at ApacheCon US and sort out the compilation problems. To me the current state of the FlexJS / Extern / Framework feels more and more like something MacGyver banged together. Hacks and patches and overrides all over the place ... I am trying to d

Re: AW: AW: [LAST CALL] Release Apache FlexJS 0.7.0

2016-05-03 Thread piotrz
Fantastic Chris! It looks really great. I will give a try once I have next free cycle - maybe falcon repository will be a good field for experiment. Thanks, Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.c

Re: AW: [LAST CALL] Release Apache FlexJS 0.7.0

2016-05-03 Thread Alex Harui
On 5/3/16, 12:06 AM, "piotrz" wrote: >Alex, > >I just finished updating FlexJS and FalconJX release notes. Also created >jira for track update before release. [1][2]. Excellent! Thanks for doing that. -Alex

AW: AW: [LAST CALL] Release Apache FlexJS 0.7.0

2016-05-03 Thread Christofer Dutz
Well it's the maven-changes-plugin (https://maven.apache.org/plugins/maven-changes-plugin/examples/customizing-jira-report.html) You usually configure the url of your jira server as well as the code of the project. It then automatically retrieves the list of issues that have been resolved with t

Re: I made an iPad app with Apache Flex SDK, I'd like to give you guys free copies : )

2016-05-03 Thread Carlos Rovira
Hi DarkStone, looks pretty good and could be a very nice one to show to clients about the power of Flex/AIR app I'll grab one of those promo codes. Thanks! +1 2016-05-03 4:06 GMT+02:00 DarkStone : > Hi, > > The Mac app is available now: > https://itunes.apple.com/app/id1109806426 > (The logo m

Re: AW: [LAST CALL] Release Apache FlexJS 0.7.0

2016-05-03 Thread piotrz
Alex, I just finished updating FlexJS and FalconJX release notes. Also created jira for track update before release. [1][2]. Chris, I didn't know! And can we simple say for this plugin give me jiras which has been resolved to version xx ? How authentication is going through ? Are we putting aut