Re: [FlexJS] Removing PasswordInputBead has no effect

2017-06-07 Thread Harbs
This is simply insanity. Discussing a simple change ad nuaseum is a colossal waste of time. Instead of perpetuating this discussion, I just made the change myself. Use the new PasswordInputRemovableBead if you want to remove password input functionality. Let’s move on. Harbs > On Jun 8, 2017

Re: [FlexJS] more on undefined / non initialised values

2017-06-07 Thread piotrz
Agree with this two, as for the rest I would not touch them. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-more-on-undefined-non-initialised-values-tp62055p62240.html Sent from the Apache Flex

Re: [FlexJS] more on undefined / non initialised values

2017-06-07 Thread Justin Mclean
Hi, > Booleans should definitely default to false and Numbers to NaN, if they > aren't explicitly initialized with a value Anyone have a differing option? Thanks, Justin

Re: [FlexJS] Removing PasswordInputBead has no effect

2017-06-07 Thread Justin Mclean
Hi, > That wont be breaking PAYG. The basic idea is to avoid loading/running > unnecessary code during runtime. Altering a class support subclassing > should be fine. Which the modified version does and would comply with that definition of PAYG - unless you think a single null check is anti PA

Re: [FlexJS] Removing PasswordInputBead has no effect

2017-06-07 Thread OmPrakash Muppirala
On Wed, Jun 7, 2017 at 3:41 PM, Justin Mclean wrote: > HI, > > > "It can't be done in a subclass with > > an override of the strand setter? > > Probably not without altering the original bead which may also be not PAYG. > That wont be breaking PAYG. The basic idea is to avoid loading/running

Re: [FlexJS] Removing PasswordInputBead has no effect

2017-06-07 Thread Justin Mclean
HI, > "It can't be done in a subclass with > an override of the strand setter? Probably not without altering the original bead which may also be not PAYG. Thanks, Justin

Re: [FlexJS] Removing PasswordInputBead has no effect

2017-06-07 Thread Alex Harui
This will make the 38th post on this thread. It is a link to the 4th post on this thread: https://lists.apache.org/thread.html/8f561b811d2e662769f204200eabe8bc706d97 b19f8859fe74ee9b3b@%3Cdev.flex.apache.org%3E "It can't be done in a subclass with an override of the strand setter? -A

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread Harbs
No. MXML does not convert to HTML. In FlexJS it converts it to JS files. You might be able to use the compiler to generate js that you can incorporate into other code. We have been very happy with FlexJS. Why don’t you want to use the framework? Harbs > On Jun 7, 2017, at 11:56 AM, Gudu wrot

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread Gudu
Our plan is to migrate from Adobe Flex to HTML/JS but it is not to convert it to FlexJS. I was trying to convert all the MXML and ActionScript we have to HTML/JS using FalconJX or FlexJS. Now, I am asking if any possiblity of converting the MXML to HTML and the actionScript and all the adobe librar

Re: [FlexJS] [Typedefs] [Maven] build issues

2017-06-07 Thread Christofer Dutz
The only 100% safe option in my opinion would be to create a tool to do the patching. This tool might simply be a wrapper around some open-source patch tool with a suitable license and provide a Maven goal to do the patching. For Ant a matching wrapper should make sure the patches are applied eq

Re: Beads and DRY (was Re: [FlexJS] Removing PasswordInputBead has no effect)

2017-06-07 Thread Josh Tynjala
I actually added VerticalLayoutWithPaddingAndGap recently. I didn't want to set margins because a gap property is much more convenient in many situations. :) - Josh On Wed, Jun 7, 2017 at 7:15 AM, Peter Ent wrote: > If you look at the layouts, you can see these questions for real. Take > Vertic

Re: Beads and DRY (was Re: [FlexJS] Removing PasswordInputBead has no effect)

2017-06-07 Thread Peter Ent
We have never really discussed the use of delegates. Its not something that ties in that well with FlexJS I think. But using a delegate to off-load some of the work, just when that work is needed, might be another solution. ‹peter On 6/7/17, 2:36 AM, "Harbs" wrote: >That¹s not what I¹m suggesti

Re: Beads and DRY (was Re: [FlexJS] Removing PasswordInputBead has no effect)

2017-06-07 Thread Peter Ent
If you look at the layouts, you can see these questions for real. Take VerticalLayout. The idea is to stack children of some component vertically. Those children can be given a) no explicit size, b) an explicit size as pixel values, c) a percentage size. You know what the VerticalLayout is supposed

Re: [2/2] git commit: [flex-asjs] [refs/heads/release0.8.0] - fix event types for valuechange. Otherwise Binding would break. Events are global and should be compatible for any given event type

2017-06-07 Thread Peter Ent
I don't think PAYG is always obvious and I continue to struggle with the question. Some examples: a. Anything that can be expressed as a style probably does not need a bead, unless the style is not native to the platform. Border and backgroundColor are good examples. These are built into HTML, but

Fwd: [jira] [Commented] (FLEX-35321) LayoutManager initializes components which are no longer on stage

2017-06-07 Thread Mihai Chira
-- Forwarded message -- From: Mihai Chira (JIRA) Date: 7 June 2017 at 13:25 Subject: [jira] [Commented] (FLEX-35321) LayoutManager initializes components which are no longer on stage To: iss...@flex.apache.org [ https://issues.apache.org/jira/browse/FLEX-35321?page=com.atla

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread yishayw
If you plan to write your app in JS and only need FalconJX for the initial conversion that's a possibility too, though it might not be the optimal one. You might want to watch [1] Harbs' talk on how to get it to compile. You can then use the created sources to build your own architecture on that.

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread Harbs
Yes: https://www.youtube.com/watch?v=-FcLs0O-BWQ The rest of the presentations should help as well: https://www.youtube.com/playlist?list=PL4EsaSA9xpnnraJX7NzpX6eh_P95RO8Pj >

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread Olaf Krueger
>Our plan is to migrate from Adobe Flex to HTML/JS but it is not to convert it to FlexJS. FlexJS also places you in the position to use HTML with AS3 [1] >Now, I am asking if any possiblity of converting the MXML to HTM I think there's no way to convert MXML to HTML automatically. Hope this helps

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread Olaf Krueger
Maybe this also helps: http://apache-flex-users.246.n4.nabble.com/FalconJX-How-To-Use-td14824.html#a14841 Summary: You have to remove all flex/flash dependencies from your AS3 code and you have to replace your mx/spark components by FlexJS components. Depending on your code base that could be

Re: [FlexJS] Removing PasswordInputBead has no effect

2017-06-07 Thread piotrz
Om, You mean subclass current bead and have new functionality in the other ? If yes I'm OK. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Removing-PasswordInputBead-has-no-effect-tp62092p62223

Re: [FlexJS] Removing PasswordInputBead has no effect

2017-06-07 Thread justin
Hi, And nothing is broken in develop and a new release (after this one) is a long way away so there’s no huge urgency here. I do intended to correct it once the discussion has died down and PAYG is clearly documented. Thanks, Justin

Re: [FlexJS] Removing PasswordInputBead has no effect

2017-06-07 Thread OmPrakash Muppirala
It seems subclass is the way to go here. Anyone disagree with that? Thanks, Om On Jun 7, 2017 1:57 AM, "Justin Mclean" wrote: > Hi, > > I'm still awaiting answers from Alex and further discussion on what PAYG > is and isn’t and will resolve in accordance to that. > > Thanks, > Justin

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread piotrz
Gudu, Yes it is create, but as I stated in my post - You will be able to automatically convert logic which do not have dependency to Flash. If you have some library or separate business logic from you UI - That is something which FalconJX should handle without the problem. Flex UI need to be rewr

Re: [FlexJS] Removing PasswordInputBead has no effect

2017-06-07 Thread Justin Mclean
Hi, I'm still awaiting answers from Alex and further discussion on what PAYG is and isn’t and will resolve in accordance to that. Thanks, Justin

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread Gudu
So does it mean, FlexJS and FalconJX don't create HTML/CSS/JavaScript from Flex Application. Some published paper described FalconJX and FlexJS as a means to migrate Flex application to HTML5/JS application. If someone has success migrating from Flex application to HTML5 -- View this message in

Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread Gudu
Hello all, I have lots of MXML and ActionScript file. I have been tried to convert these files to HTML/JS using FlaconJX and FlexJS. I like to ask if someone has any success converting Flex application with FlexJS or FalconJX. I have followed this instruction to configure the development environm

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread yishayw
It is possible, we've been doing it. Unless you want to modify the framework you don't need the developer setup. This [1] should get you started. [1] https://cwiki.apache.org/confluence/display/FLEX/Getting+Started+With+FlexJS -- View this message in context: http://apache-flex-development.

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread piotrz
Hi Gudu, The answer is yes and no. Yes - You will be able in most cases convert your business logic which is not have dependency to flash to FlexJS. No - Unfortunately your UI need to be rewrite probably from scratch. If you are going to write your own application I think everything what you n

Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread PKumar
Not completely, you can re-use your existing business logic and back end serverice but view components you have to rewrite using FlexJS components set. On 07-Jun-2017 2:14 PM, "Gudu [via Apache Flex Development]" < ml+s247n62212...@n4.nabble.com> wrote: > Hello all, > > I have lots of MXML an

Re: [FlexJS] Removing PasswordInputBead has no effect

2017-06-07 Thread piotrz
Agree with Om. I also do not wanna to leave this thread without any action. In whatever direction it will go. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Removing-PasswordInputBead-has-no-eff

Re: [FlexJS] Removing PasswordInputBead has no effect

2017-06-07 Thread OmPrakash Muppirala
Justin, Do you now have sufficient info on the PAYG paradigm to resolve this issue? When you re-read Alex and Harbs' suggestions now, does it make sense? I suggest we fix this issue and move on, please. Thanks, Om On Jun 6, 2017 5:22 PM, "Justin Mclean" wrote: Hi, > Actually I will have de