Re: Flex app broken on Microsoft Edge Browser?

2016-09-20 Thread Alex Harui
If you can boil down a simple test app, it might be easier to debug. Unless the pause results in a script timeout, a pause shouldn't break a SWF. -Alex On 9/20/16, 11:56 AM, "OK" wrote: >Unfortunately I've no solution. >It's the first time I've heard of this 'intelligent

Re: Flex app broken on Microsoft Edge Browser?

2016-09-20 Thread OK
Unfortunately I've no solution. It's the first time I've heard of this 'intelligent pause' button in edge. So maybe this is also interestig for others [1]. Thanks, Olaf [1] https://blogs.windows.com/msedgedev/2016/04/07/putting-users-in-control-of-flash/#rw8kVkjG0k8OWq3m.97 -- View this

Re: [FlexJS] TextInput/Form validation

2016-09-20 Thread Alex Harui
On 9/20/16, 11:43 AM, "OK" wrote: >Thanks Peter and Alex, I'll try to implement it. It's probably a good >exercise. >I'll start with studying the existing code... we'll see... don't expect >too >much ;-) Hi Olaf, Thanks for volunteering. I don't remember how familiar

Re: [FlexJS] TextInput/Form validation

2016-09-20 Thread OK
Thanks Peter and Alex, I'll try to implement it. It's probably a good exercise. I'll start with studying the existing code... we'll see... don't expect too much ;-) Thanks, Olaf -- View this message in context:

Re: [FlexJS] TextInput/Form validation

2016-09-20 Thread Peter Ent
If you use beads, the JS code in the bead would add "require", for example, to the element, but the SWF code might be empty since there is nothing on the SWF side to support a required input field. One day you or someone might fill in that SWF code block. If you use beads, the developer would

Re: [FlexJS] TextInput/Form validation

2016-09-20 Thread OK
>Yes, beads would be a good thing, but IMO, it is only necessary for the >COMPILE::SWF code, since it is the SWF code that doesn't have built-in >functionality to rely on. If we'd go this way, does it mean that at the end users would have to add beans to make sure that the SWF version works and

Re: Upgrading Flash builder from 4.5 codebase to 4.7 trouble :-)

2016-09-20 Thread Alex Harui
Chris Dutz and other Maven folks, can you help with this question? -Alex From: "Subbaiyan, Kalaivani" > Reply-To: "users@flex.apache.org"

Re: [FlexJS] TextInput/Form validation

2016-09-20 Thread Alex Harui
Yes, beads would be a good thing, but IMO, it is only necessary for the COMPILE::SWF code, since it is the SWF code that doesn't have built-in functionality to rely on. Because we have a regular org.apache.flex.html.TextInput that can serve as the baseline for folks who don't need these form

Re: [FlexJS] TextInput/Form validation

2016-09-20 Thread Peter Ent
Hi, If you want to make this modification you should do it in the HTML5 project. Keep in mind that "required" and "pattern" should be implemented for SWF as well or at least do something suitable. I would suggest using beads: The beads would then have their JS code all

Re: Flex development associate required

2016-09-20 Thread OK
Seems that your app doesn't work, follwing message is displayed after starting it: "Unable to communicate with server. Please check your network connectivity and try again." Olaf -- View this message in context:

Re: Flex development associate required

2016-09-20 Thread mark goldin
[image: pasted1] On Tue, Sep 20, 2016 at 8:05 AM Vibhu wrote: > Hi, > > I am Vibhu, working for a startup named Brandificant. We have a flex > application (check out http://webapp.brandificant.com/), developed using > Flex Builder 4.5. This is to invite experienced

Flex development associate required

2016-09-20 Thread Vibhu
Hi, I am Vibhu, working for a startup named Brandificant. We have a flex application (check out http://webapp.brandificant.com/), developed using Flex Builder 4.5. This is to invite experienced adobe flex developers to work with us. The primary goals of the engagement being: 1) Making the

Re: [FlexJS] TextInput/Form validation

2016-09-20 Thread OK
>Want to make it happen? I could give it a first try tonight. Any help how to achieve this is appreciated ;-) Thanks, Olaf -- View this message in context: http://apache-flex-users.246.n4.nabble.com/FlexJS-TextInput-Form-validation-tp13577p13585.html Sent from the Apache Flex Users

Re: [FlexJS] TextInput/Form validation

2016-09-20 Thread Alex Harui
On 9/20/16, 12:00 AM, "OK" wrote: >Alex Harui wrote >> What APIs are you referring to? > >My understanding is that FlexJS converts "org.apache.flex.html5.TextInput" >to "". >The html5 "" element provides an "required" and "pattern" attribute >[1][2]. >So the question is

Re: [FlexJS] TextInput/Form validation

2016-09-20 Thread OK
Alex Harui wrote > What APIs are you referring to? My understanding is that FlexJS converts "org.apache.flex.html5.TextInput" to "". The html5 "" element provides an "required" and "pattern" attribute [1][2]. So the question is if it makes sense (and if it would be possible) to make all these