RE: [FlexJS] How Binding works?

2017-06-19 Thread Yishay Weiss
public function get PURCHASED():String { return "PURCHASED"; } But the class has [Bindable]public class DefaultStrings implements IUIStrings From: Alex Harui Sent: Tuesday, June 20, 2017 9:33 AM To: dev@flex.apache

RE: [FlexJS] How Binding works?

2017-06-19 Thread Yishay Weiss
It’s more to let the compiler know the implementations are bindable. I don’t expect them to automatically become bindable. From: piotrz Sent: Tuesday, June 20, 2017 9:52 AM To: dev@flex.apache.org Subject: RE: [FlexJS] How Binding work

RE: [FlexJS] How Binding works?

2017-06-20 Thread Yishay Weiss
I agree it’s wasteful, but there’s a lot of old code that we’re porting that uses this as a shortcut. I’ve changed all interface get definitions to be prefixed with [Bindable("__NoChangeEvent__")] and the compiler now seems happy. It should probably be enough to add it the interface declaration

RE: [FlexJS] TileLayout

2017-06-22 Thread Yishay Weiss
It’s a bit different because horizontal/vertical layouts don’t size the children. Tile does according to the set number of rows and columns. Peter, FlexBox works fine, the question is how to calculate the childrens’ size. It looks to me like another PAYG question. Is the basic tile functionalit

RE: [FlexJS] question about porting an Adobe Flex 3 project to HTML+JS

2017-07-01 Thread Yishay Weiss
Thanks Alex. These lines were necessary for the last part of the presentation where I show how to change stuff in the framework. I commented them out in the uploaded zip. From: Alex Harui-2 [via Apache Flex Development] Sent: Saturday, July 1, 2017 6:3

RE: git commit: [flex-asjs] [refs/heads/develop] - Added FileIUploader, fixed BinaryUploader

2017-07-04 Thread Yishay Weiss
I removed it, thanks. From: Piotr Zarzycki Sent: Tuesday, July 4, 2017 2:30 PM To: dev@flex.apache.org Subject: Re: git commit: [flex-asjs] [refs/heads/develop] - Added FileIUploader, fixed BinaryUploader Hi Yishay, Do we need this t

RE: [1/2] git commit: [flex-asjs] [refs/heads/develop] - Camera API requires flash verion 11.4

2017-07-05 Thread Yishay Weiss
I’m not sure. See here [1] [1] http://apache-flex-development.247.n4.nabble.com/FlexJS-Mobile-Depends-on-Flash-11-4-td62811.html From: Piotr Zarzycki Sent: Wednesday, July 5, 2017 11:56 AM To: dev@flex.apache.org Subject: Re: [1/2

RE: git commit: [flex-asjs] [refs/heads/develop] - Add FileUploaderWithResponseData

2017-07-10 Thread Yishay Weiss
I was thinking the same thing but it’s complicated to make it into a bead. It would have to catch the ‘complete’ event and record the response data before anyone else does. Since we don’t have event listener priorities I don’t know how to do that. I hope to update the wiki Greg wrote when I’m do

RE: git commit: [flex-asjs] [refs/heads/develop] - Uploads are assumed to be POST

2017-07-11 Thread Yishay Weiss
I was trying to save an extra import. Will wait for more thoughts on this. From: Piotr Zarzycki Sent: Tuesday, July 11, 2017 11:15 AM To: dev@flex.apache.org Subject: Re: git commit: [flex-asjs] [refs/heads/develop] - Uploads are assume

RE: git commit: [flex-asjs] [refs/heads/develop] - Uploads are assumed to be POST

2017-07-11 Thread Yishay Weiss
Normally I would agree, but I was trying to be strict about PAYG in these commits. Let’s see what the others say. From: piotrz Sent: Tuesday, July 11, 2017 12:05 PM To: dev@flex.apache.org Subject: RE: git commit: [flex-asjs] [refs/hea

RE: git commit: [flex-asjs] [refs/heads/develop] - Add FileUploaderWithResponseData

2017-07-13 Thread Yishay Weiss
Generally speaking it feels like sometimes I need to insure the order of invocation. Since beads communicate with one another through events it’s difficult to achieve. Regarding the upload response data I understand your suggestion as follows (edges contain event names): --uploadRequested-c

RE: Moonshine 1.5.0 Release

2017-07-16 Thread Yishay Weiss
It does, thanks. From: piotrz Sent: Sunday, July 16, 2017 10:28 AM To: dev@flex.apache.org Subject: Re: Moonshine 1.5.0 Release Hi Yishay, Does this link working for you [1] [1] http://moonshine-ide.com/downloads/releases/windows/Moo

RE: [FlexJS] Falcon AsJS Mismatch?

2017-07-16 Thread Yishay Weiss
Yea, flex-falcon is up2date. My ‘fix’ was to change TabStopsProperty.as:191 to private static const _escapeBackslashRegex:RegExp = new RegExp("\\" + "\\", "g"); I’m not pushing this yet so Alex or others can debug the RTE. From: Harbs Sent: Sunday, Ju

RE: FYI: React appears to be a no-no

2017-07-17 Thread Yishay Weiss
Does that rule out a reactjs component set (ala createjs)? From: Harbs Sent: Monday, July 17, 2017 12:47 PM To: dev@flex.apache.org Subject: Re: FYI: React appears to be a no-no No. I just thought this was newsworthy. > On Jul 17, 2017,

RE: [Falcon] operand stack underflow?

2017-07-17 Thread Yishay Weiss
I’m actually able to build after running the following batch file: cd \dev\flexjs\flex-falcon git pull call ant wipe-all cd \dev\flexjs\flex-typedefs call ant wipe git pull cd \dev\flexjs\flex-asjs call ant super-clean git pull ant clean all I am however getting a runtime error because of the fo

RE: [Falcon] operand stack underflow?

2017-07-17 Thread Yishay Weiss
[1] https://paste.apache.org/STWV From: Yishay Weiss<mailto:yishayj...@hotmail.com> Sent: Monday, July 17, 2017 4:24 PM To: dev@flex.apache.org<mailto:dev@flex.apache.org> Subject: RE: [Falcon] operand stack underflow? I’m actually able to build after running the following batch file: cd \dev\flexj

RE: [FlexJS] findPopupHost issue

2017-07-17 Thread Yishay Weiss
I think there’s confusion over what a popup host is. A popup host is where you would add an IPopUp. UIUtils.findPopUpHost(myComp as IUIBase) finds the closest ancestor for myComp to which a popup can be added. These lines from ComboBoxView demonstrate the usage: var p

RE: [FlexJS] findPopupHost issue

2017-07-17 Thread Yishay Weiss
Even if the Application instance isn’t an IPopUpHost the method will just return null, so the effect is the same as just doing (appInstance as IPopUpHost). I suspect the method is being misused rather than there being a problem with the method. From: Alex Harui

RE: [FlexJS] String.match()

2017-07-20 Thread Yishay Weiss
Good catch. I was misled by the docs [1]. [1] http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/String.html#match() From: Harbs Sent: Thursday, July 20, 2017 9:40 AM To: dev@flex.apache.org Subject: Re: [FlexJS] String.ma

RE: [FlexJS, MDL] Menu with dataProvider and itemRenderer API

2017-07-26 Thread Yishay Weiss
Piotr, after thinking about it, I’m reverting the change. I don’t think it’s right for a menu to have a selected item, and it causes visual confusion the next time it appears. It’s probably best to just propagate the ‘itemClicked’ event with some info on the item renderer data. From: piotrz

RE: [FlexJS, MDL] Menu with dataProvider and itemRenderer API

2017-07-26 Thread Yishay Weiss
Piotr, sorry for the confusion, I’m not reverting my change. After it, I am getting the ‘change’ event, no need for an ‘itemClicked’ event which, is Alex had proposed, would be confusing for other input methods. I fixed the visual confusion. I assigned you a JIRA [1] regarding the example, than

RE: Help with 0.8

2017-07-26 Thread Yishay Weiss
Can you describe what you’re doing? Running a build? If so, how? If you’re using external tool you might want to go to the Environment tab in the external configuration settings and set JAVA_HOME there. From: Jim Norris Sent: Wednesday, July 26, 2017 7:24 PM To: dev

RE: [FlexJS, MDL] Menu with dataProvider and itemRenderer API

2017-07-26 Thread Yishay Weiss
Is the example I posted on JIRA working for you? From: piotrz Sent: Thursday, July 27, 2017 9:00 AM To: dev@flex.apache.org Subject: RE: [FlexJS, MDL] Menu with dataProvider and itemRenderer API I'm thinking about it more and despite t

RE: MDL and Material Components Web (was Re: Help with 0.8)

2017-07-26 Thread Yishay Weiss
Maybe slightly off topic but I would love for an ambitious soul to skin a nice default FlexJS look and feel. I would be glad to help with that, but we need someone (else) to come up with a good graphic design. From: piotrz Sent: Thursday, July 27, 2017 9:12 AM T

RE: [FlexJS, MDL] Menu with dataProvider and itemRenderer API

2017-08-01 Thread Yishay Weiss
Good catch. You’re correct that we’re not using -compiler.exclude-defaults-css-files anywhere. We have some CSS overrides that take care of the controls we’re using. Generally, we just inspect the DOM and figure out which styles need to be fixed and add those to our CSS. Hopefully, this won’t b

RE: [FlexJS, MDL] Menu with dataProvider and itemRenderer API

2017-08-02 Thread Yishay Weiss
I don’t think those lines would be enough for all MDL controls. We’re only using a subset. From: piotrz Sent: Wednesday, August 2, 2017 2:02 PM To: dev@flex.apache.org Subject: RE: [FlexJS, MDL] Menu with dataProvider and itemRenderer

RE: FlexJS Bead dilemma

2017-08-06 Thread Yishay Weiss
>The bead is probably more PAYG, but it’s also more “pay” when you do go. >Changing bead >notifications would probably make it cheaper though. That’s a major point in my opinion. If we knew the cost of dispatching a notification was next to nothing we would be able to provide lots of hooks,

Re: FlexJS Bead dilemma

2017-08-07 Thread Yishay Weiss
That would make it a pretty thick wrapper. It would have to dispatch all the events that layout beads expect ,and implement ILayoutChild and ILayoutParent. Have a look at LayoutBase to see the dependencies on the strand assumed by most layouts (and there are probably more in the concrete classe

RE: FlexJS Bead dilemma

2017-08-07 Thread Yishay Weiss
set the strand on the actual layout bead. I'm not sure how much actually would need to be proxied or forwarded in that case. Or maybe the wrapper could just put the actual layout bead on the strand. Just tossing ideas around... -Alex On 8/7/17, 10:47 PM, "Yishay Weiss" wrote

RE: [FlexJS] Finding (x,y) position

2017-08-30 Thread Yishay Weiss
Peter, Is PointUtils.localToGlobal() not working for you? From what I understand it takes approach (1). From: Peter Ent Sent: Tuesday, August 29, 2017 11:29 PM To: dev@flex.apache.org Subject: [FlexJS] Finding (x,y) position Hi, While

RE: [FlexJS] Finding (x,y) position

2017-08-30 Thread Yishay Weiss
using the offset properties. ‹peter On 8/30/17, 3:02 AM, "Yishay Weiss" wrote: >Peter, > >Is PointUtils.localToGlobal() not working for you? From what I understand >it takes approach (1). > >From: Peter Ent<mailto:p...@adobe.com.INVALID> >Sent: Tuesda

RE: [FlexJS] Finding (x,y) position

2017-08-30 Thread Yishay Weiss
. From: Yishay Weiss<mailto:yishayj...@hotmail.com> Sent: Wednesday, August 30, 2017 5:11 PM To: dev@flex.apache.org<mailto:dev@flex.apache.org> Subject: RE: [FlexJS] Finding (x,y) position I see what you’re saying. I think we worked around that issue in our app by relying on MouseE

RE: [FlexJS] Finding (x,y) position

2017-08-30 Thread Yishay Weiss
's column lists. > >As the mouse is detected over an itemRenderer, I need to know the >itemRenderer's position within its list so I can translate that into >global space and then into the space of the layer. > >However, what you just wrote gave me another idea that might

RE: [VOTE] Fork FlexJS from Apache Flex

2017-09-01 Thread Yishay Weiss
lishing process is. We will probably continue to run jobs on builds.a.o. Initial PMC Harbs Yishay Weiss Alex Harui Peter Ent Josh Tynjala Piotr Zarzycki Carlos Rovira Erik De Bruin Omprakash Muppirala Frédéric Thomas Olaf Krueger Michael Schmalle Dave Fisher Initial Committers Christofer Dutz G

RE: [DISCUSS] Name of the FlexJS Fork

2017-09-13 Thread Yishay Weiss
My main concern was with the JS suffix. If we can create new products without the JS suffix that’s fine with me. On the other hand, if Carlos or someone else feels passionate about a name change and volunteers to deal with the overhead I wouldn’t go against it. From: Alex Harui

RE: [DISCUSS] Name of the FlexJS Fork

2017-09-14 Thread Yishay Weiss
How is Royale pronounced? Can Americans pronounce it and stay alive? I would go with a max 2 syllable word. If it’s Roh-yah-lay, then sorry Carlos, I’d send you back to the drawing board. From: Harbs Sent: Thursday, September 14, 2017 12:55 PM To: dev@flex.apache.or

RE: Re: [DISCUSS] Name of the FlexJS Fork

2017-09-15 Thread Yishay Weiss
> For migration : As a customer, I don't think migration is a real option. I can’t say I agree with that. The business logic is almost seamlessly ported. The UI is more involved but still pretty similar. Also, most examples one sees these days are using the Basic component set. I can envision

RE: Build failed in Jenkins: flex-asjs #2567

2017-09-18 Thread Yishay Weiss
It fails on , basically it looks like it’s running an example like this [1] and verifying that the label value is correct. When running [1] manually it seems to work so to me it looks like the test is bad. [1] https://paste.apache.org/vnDx From: Harbs Sent: Monday,

RE: [VOTE] What should be the new Project Name for Proposed fork of FlexJS?

2017-09-18 Thread Yishay Weiss
1. Bend 2. Roayle 3. Action From: Harbs Sent: Monday, September 18, 2017 10:21 AM To: dev@flex.apache.org Subject: Re: [VOTE] What should be the new Project Name for Proposed fork of FlexJS? 1. Limber 2. Arise 3. Boja Harbs > O

RE: Royale website and domain registration

2017-09-24 Thread Yishay Weiss
Personally I think it should be a FlexJS App/Site. It would take longer to have something running but if the framework isn’t ready for this kind of thing then it’s probably a good idea to delay publishing the site until it is ready. Frankly, I don’t think we’re in a Royale state right now. There

RE: [3/4] git commit: [flex-asjs] [refs/heads/develop] - Allow drag and drop item renderers to be more that simpkle labels.

2017-09-27 Thread Yishay Weiss
Possibly. Which part adds overhead in your opinion? From: Justin Mclean Sent: Wednesday, September 27, 2017 11:59 AM To: dev@flex.apache.org Subject: Re: [3/4] git commit: [flex-asjs] [refs/heads/develop] - Allow drag and drop item renderers

RE: [3/4] git commit: [flex-asjs] [refs/heads/develop] - Allow drag and drop item renderers to be more that simpkle labels.

2017-10-02 Thread Yishay Weiss
There’s no change in PAYG rules. My guideline was to not add anything significant to runtime cost or download size by enhancing the bead. I may have missed something, so if there’s a specific line number that you see which is adding to either of those please let me know. We did have a concern r

RE: [VOTE] Release Apache Flex SDK Installer 3.3 - RC3

2017-11-13 Thread Yishay Weiss
I’m getting this: gpg: Can't check signature: No public key Where can I get the public key? From: Piotr Zarzycki Sent: Sunday, November 12, 2017 10:49:54 PM To: dev@flex.apache.org Subject: [VOTE] Release Apache Flex SDK Installer 3.3 - RC3 Hi Folks, Thi

RE: [Discuss] Release Apache Flex SDK Installer 3.3 - RC3*

2017-11-13 Thread Yishay Weiss
When running the ant approve script I get this: gpg: Can't check signature: No public key Where can I get the public key? From: Piotr Zarzycki Sent: Sunday, November 12, 2017 10:51:23 PM To: dev@flex.apache.org Subject: [Discuss] Release Apache Flex SDK Insta

RE: [VOTE] Release Apache Flex SDK Installer 3.3 - RC3

2017-11-13 Thread Yishay Weiss
[echo] [echo] +1 [echo] Package https://dist.apache.org/repos/dist/dev/flex/installer/3.3/rc3/apache-flex-sdk-installer-3.3.0-src.zip [echo] Java 1.8 [echo] OS: Windows 10 amd64 10.0 [echo] Source kit signatures match: y [echo] Source kit builds: y [echo] RE

RE: Flex Old Support

2017-12-05 Thread Yishay Weiss
Adobe hasn’t dropped AIR but there has been debate [1] over its level of commitment to the platform. Anyway, Apache Flex cannot speak for Adobe. I think you should inquire in Adobe forums about the roadmap post 2020. [1] https://forums.adobe.com/thread/2362234?start=240&tstart=0 ___

RE: [Vote] Moving JIRA issues and Confluence Wiki to GitHub

2019-01-20 Thread Yishay Weiss
+0. As others, I don’t see a clear benefit. Both tracking systems are solid. On the other hand, if a member of the community is keen to do something and sees some benefit in it I think we shouldn’t stand in his/her way. From: Olaf Krueger Sent: Saturday,

RE: MXRoyale question - styleName

2020-05-07 Thread Yishay Weiss
Yes, I was meaning to respond to that. Our client opened up our POC on his default browser, which is IE11, and saw nothing working. It’s still out there. >It's interesting that in the same month as someone wants modules to work in >IE11 we also want to get rid of IE11 support. On 5/7/20, 2:09

RE: Variable Reference

2020-05-24 Thread Yishay Weiss
Hi Mike, That should work. I don’t remember if Flex required you to cast FlexGlobals.topLevelApplication to your specific app class, but I think you would need to do that in Royale. Yishay From: MikeH Sent: Friday, May 22, 2020 6:27:23 PM To: dev@flex.apache.org Subject: Variable Reference

RE: Variable Reference

2020-05-24 Thread Yishay Weiss
I had a look and FlexGlobals.topLevelApplication is an Object in Royale, so you’re not obliged to cast it. From: Yishay Weiss<mailto:yishayj...@hotmail.com> Sent: Sunday, May 24, 2020 12:02 PM To: dev@flex.apache.org<mailto:dev@flex.apache.org> Subject: RE: Variable Reference Hi

RE: Royale File Upload

2020-05-30 Thread Yishay Weiss
Does the emulation example [1] work for you? [1] https://github.com/apache/royale-asjs/blob/develop/examples/mxroyale/FileReference/src/main/royale/FileReference.mxml From: MikeH Sent: Friday, May 29, 2020 10:05 PM To: dev@flex.apache.org

RE: Flash builder 4.7

2020-08-05 Thread Yishay Weiss
Have you seen this link [1]? [1] https://www.adobe.com/products/flash-builder-standard/faq.html#gettingstarted From: inkong Sent: Wednesday, August 5, 2020 11:00 AM To: dev@flex.apache.org Subject: Flash builder 4.7 Hi, I'm currently mai

Using Fdb

2020-12-14 Thread Yishay Weiss
When I try running fdb I get the following message: C:\Program Files\Adobe\Adobe Flash Builder 4.7 (64 Bit)\sdks\4.6.0\bin>fdb.exe Error loading: C:\Program Files\Java\jdk1.8.0_261\jre\bin\server\jvm.dll Does it only run with java 7? Any help appreciated. Yishay

Is Any Browser At All Supporting Flash as of today?

2021-01-11 Thread Yishay Weiss
Hi, We are in the process of converting a Flex app to Royale. The customer was under the impression that they could afford to give us another few weeks by telling the customers to use an old version of FF, but now they’ve learned that plan is not working. Any ideas for an emergency workaround?

RE: Is Any Browser At All Supporting Flash as of today?

2021-01-12 Thread Yishay Weiss
accessible-in-2021/ <https://blogs.sap.com/2020/12/10/how-to-keep-enterprise-flash-applications-accessible-in-2021/> > On Jan 12, 2021, at 9:03 AM, Yishay Weiss wrote: > > Hi, > > We are in the process of converting a Flex app to Royale. The customer was > under the im

RE: Is Any Browser At All Supporting Flash as of today?

2021-01-12 Thread Yishay Weiss
Thanks. Following this guide [1] which was in one of Harbs’ links we were able to get it working forf FF and Windows By editing mms.cfg under C:\Windows\SysWOW64\Macromed\Flash and adding the following content EOLUninstallDisable=1 SilentAutoUpdateEnable=0 EnableAllowList=1 AutoUpdateDisable=1

RE: Is Any Browser At All Supporting Flash as of today?

2021-01-12 Thread Yishay Weiss
> The wildcard syntax is explained Actually the wildcards are not working for me. From: Yishay Weiss<mailto:yishayj...@hotmail.com> Sent: Tuesday, January 12, 2021 12:13 PM To: dev@flex.apache.org<mailto:dev@flex.apache.org> Subject: RE: Is Any Browser At All Supporting Fl

RE: Is Any Browser At All Supporting Flash as of today?

2021-01-12 Thread Yishay Weiss
/articles/flash_player_admin_guide/pdf/latest/flash_player_32_0_admin_guide.pdf From: Yishay Weiss<mailto:yishayj...@hotmail.com> Sent: Tuesday, January 12, 2021 1:09 PM To: dev@flex.apache.org<mailto:dev@flex.apache.org> Subject: RE: Is Any Browser At All Supporting Flash as of t

RE: Dot Net (C#) Flex Runtime

2021-07-15 Thread Yishay Weiss
Hi Jason, Royale was designed to target more than one platform. It currently supports js and swf. Have you considered adding .NET as a 3rd target platform? Thanks, Yishay From: Andrew Wetmore Sent: Thursday, July 15, 2021 3:19 PM To: dev@flex.apache.org

RE: Nabble doesn't work http://apache-flex-users.2333346.n4.nabble.com/

2021-08-02 Thread Yishay Weiss
I think Alex tried getting Apache to fix it to no avail. Maybe we should remove Nabble from our website and retain only ponymail links. From: Piotr Zarzycki Sent: Monday, August 2, 2021 11:06 AM To: dev@flex.apache.org Subject: Nabble

How To Debug Flash Apps on Packaged Browser

2021-12-26 Thread Yishay Weiss
Hi, I am trying to connect fdb to a client's packaged browser. I tried simply calling run and launching the browser but no success. Any ideas? Thanks Yishay

RE: How To Debug Flash Apps on Packaged Browser

2021-12-26 Thread Yishay Weiss
ty model though, so doesn't always work. On 12/26/21, 3:46 AM, "Yishay Weiss" wrote: Hi, I am trying to connect fdb to a client's packaged browser. I tried simply calling run and launching the browser but no success. Any ideas? Thanks Yishay

RE: [GitHub] [flex-flexunit] piotrzarzycki21 merged pull request #5: Update README

2022-04-19 Thread Yishay Weiss
If it’s just to fix a README then I don’t think it needs to go to dev. From: Piotr Zarzycki Sent: Monday, April 18, 2022 4:32 PM To: dev@flex.apache.org Subject: Re: [GitHub] [flex-flexunit] piotrzarzycki21 merged pull request #5: Upda

RE: Board report for June 2022 has been submitted

2022-06-08 Thread Yishay Weiss
> ## Community Health: During the last quarter, there was no mailing list activity at dev and nearly no activity at users. I would add that questions about Flex have been posted to Royale mailing lists. From: Olaf Krüger Sent: Wednesday, June 8, 2022 8:16 AM To: dev@fl

RE: Retiring the project

2022-06-08 Thread Yishay Weiss
For what it’s worth, I am aware of several Flex projects that are still in production. They are all considering transitioning, but have not yet made the decision, or have not finished the transition. I am not aware of new Flex projects being created. From: Csomák Gábor

RE: BlazeDS release

2023-01-09 Thread Yishay Weiss
Thanks for working on this. Chris gave some guidelines [2] for the release process. Maybe the plc4x check-list [1] is helpful? [1] https://plc4x.apache.org/developers/release/release.html [2] The release itself should be the normal Maven release process … you can see in the plc4x release docum

RE: [DISCUSS] Release Apache flex-sdk-converter-maven-extension 1.1.0 RC1

2023-02-08 Thread Yishay Weiss
I’m getting this: C:\dev\apache-flex-sdk-converter-1.1.0>mvn clean install Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8 [INFO] Scanning for projects... [INFO] [INFO] Reactor Build Order: [INFO] [INFO] Apache Flex - SDK-

RE: [DISCUSS] Release Apache flex-sdk-converter-maven-extension 1.1.0 RC1

2023-02-10 Thread Yishay Weiss
would you be willing to test `mvn clean install` with JDK 11 so that we don't need to do a new RC? If you're going to try it with royale-compiler, you can switch back to JDK 17 for that. -- Josh Tynjala Bowler Hat LLC <https://bowlerhat.dev> On Wed, Feb 8, 2023 at 11:10 PM Yishay

RE: [VOTE] Release Apache flex-sdk-converter-maven-extension 1.1.0 RC1

2023-02-13 Thread Yishay Weiss
+1 * Source code compiles (JDK 8) * Sha512 matches * README repo link and java versions correct From: Harbs Sent: Sunday, February 12, 2023 2:45 PM To: dev@flex.apache.org Subject: Re: [VOTE] Release Apache flex-sdk-converte

RE: [DISCUSS] Release Apache flex-sdk-converter-maven-extension 1.1.0 RC1

2023-02-13 Thread Yishay Weiss
Tynjala Bowler Hat LLC <https://bowlerhat.dev> On Wed, Feb 8, 2023 at 11:10 PM Yishay Weiss wrote: > I’m getting this: > > C:\dev\apache-flex-sdk-converter-1.1.0>mvn clean install > Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-

Re: [VOTE] Release Apache Flex BlazeDS 4.8.0 RC1

2023-04-16 Thread Yishay Weiss
+1 Windows 11 JDK 17.0.5 Apache Maven 3.8.1 Signatures match and key verified against https://dist.apache.org/repos/dist/release/flex/KEYS Source builds From: Josh Tynjala Sent: Monday, March 20, 2023 7:07 PM To: Apache Flex Development Subject: Re: [VOTE] R

Re: [RESULT] [VOTE] Release Apache Flex BlazeDS 4.8.0 RC1

2023-04-17 Thread Yishay Weiss
Thanks! Get Outlook for Android From: Josh Tynjala Sent: Monday, April 17, 2023 6:39:29 PM To: Apache Flex Development Subject: [RESULT] [VOTE] Release Apache Flex BlazeDS 4.8.0 RC1 Vote passes with 3 binding +1 votes. Thank you, Josh

RE: [FlexJS] Optimizing the maven build ... success ...

2016-10-30 Thread Yishay Weiss
Sounds great. I’m still using ANT but I’ve got some slight bottlenecks. The main ones I’ve noticed are building core which can take around a minute, and building the app from FlashBuilder, which can also take a long time (depends on the app). If I make the switch to Maven, will I be able to impr

RE: [FlexJS] Extending SimpleCSSValuesImpl

2016-10-30 Thread Yishay Weiss
I’ll explain the scenario to make it more clear. I wanted to add a new CSS property (overflow) which was not included in SimpleCSSValueImpl. I noticed that valid CSS properties were specified in SimpleCSSValuesImpl.perInstanceStyles. I suppose I could have done

RE: Getting ready for the refactor-sprite merge (was Re: [FlexJS] HTMLElementWrapper extending Sprite)

2016-11-07 Thread Yishay Weiss
Encountered another issue I found when trying to compile on the swf side. I’ve added a ‘sprite-refactor’ label to JIRA issues. Here’s a filtered search https://issues.apache.org/jira/browse/FLEX-35168?jql=labels%20%3D%20sprite-refactor From: Alex Harui Sent: Monday

RE: [FlexJS] Building from Flash Builder

2016-11-12 Thread Yishay Weiss
Not sure what’s going on. I just installed the latest nightly, created a new project, and copied DataBindingExample.mxml, and related sources. Same result. From: Alex Harui Sent: Friday, November 11, 2016 9:58 AM To: dev@flex.apache.org Subje

RE: [FlexJS] Building from Flash Builder

2016-11-13 Thread Yishay Weiss
Building the project with ant works, so I’m sticking to that for the time being. In FB, you can even add an external tool configuration to run ant in the correct directory which achieves the result I need. From: Yishay Weiss<mailto:yishayj...@hotmail.com> Sent: Sunday, November 13, 201

RE: Keeping in mind that there's a Maven build ...

2016-11-16 Thread Yishay Weiss
Hi Chris, That would have been me. I was aware the jobs were failing, you just beat me to it. Thanks for fixing it. Is there a way to have both builds read the same file for determining package dependencies? I thought that was what compile-as-config.xml and compile-js-config.xml were doing

RE: git commit: [flex-asjs] [refs/heads/develop] - HTML now depends on Effects, so order is changed.

2016-11-16 Thread Yishay Weiss
I agree, and don’t mind reversing that. The question is where would that bead exist. The only dependency one Effects in HTML now, is in the form of an optional bead that depends on HTML and Effects, namely EasyAccordionCollapseBead. Where do you propose to put it? From: Alex Harui

RE: git commit: [flex-asjs] [refs/heads/develop] - Add easing effect to accordion.

2016-11-16 Thread Yishay Weiss
Hi Alex, Accordion, as I wrote it, will not function properly without some mechanism for collapsing items. This code calls get accordionCollapseBead() which searches for beads that implement ICollapseBead, either in the beads collection or in CSS. It’s similar to the way UIBase initializes mo

RE: git commit: [flex-asjs] [refs/heads/develop] - HTML now depends on Effects, so order is changed.

2016-11-16 Thread Yishay Weiss
ber 16, 2016 8:13 PM To: dev@flex.apache.org<mailto:dev@flex.apache.org> Subject: Re: git commit: [flex-asjs] [refs/heads/develop] - HTML now depends on Effects, so order is changed. On 11/16/16, 9:46 AM, "Yishay Weiss" wrote: >I agree, and don’t mind reversing that. The que

RE: git commit: [flex-asjs] [refs/heads/develop] - Add easing effect to accordion.

2016-11-16 Thread Yishay Weiss
That’s basically what happens. I decided to separate the collapse mechanism from the view, thinking that it’s an isolated enough concern to warrant a separate bead. The default implementation uses CollapseBead, which does not depend on Effects. >IOW, the basic implementations should not assume

RE: [FlexJS] List Structure

2016-11-22 Thread Yishay Weiss
How about extending list but not using ListView? Maybe you can have a different implementation of IListView where dataGroup references the view element? If you’re sure there’s not going to be any chrome elements (e.g. TitleBar) then it seems to me correct to not use a data group on top of the

RE: [FlexJS] List Structure

2016-11-23 Thread Yishay Weiss
Looking at List it doesn’t really do much in way of selection. All it does is act as a proxy to the model which in turn keeps the selection state and fires the necessary events. So I would rename List to DataGroup and get rid of the proxy methods. The default model bead (defined in defaults.c

RE: git commit: [flex-asjs] [refs/heads/develop] - Don't let order of bead addition confuse collapse bead.

2016-11-28 Thread Yishay Weiss
This is a form of lazy loading. We’re not baking in any new dependencies that weren’t there before. If you look in ContainerView.performLayout(), for example, you’ll see it’s doing the same thing. Some beads rely on other beads to already be loaded, this code essentially makes sure that the d

RE: git commit: [flex-asjs] [refs/heads/develop] - FLEX-35187 - explicitly set default border to none, so viewports can ignore non-existent borders.

2016-11-28 Thread Yishay Weiss
‘none’ is the default value of border-style, so it shouldn’t affect rendering. The problem was in CSSContainerUtils.getBorderMetrics(): var borderStyle:Object = ValuesManager.valuesImpl.getValue(object, "border-style"); borderStyle was evaluated in JS to undefined and the condition that f

RE: git commit: [flex-asjs] [refs/heads/develop] - FLEX-35187 - explicitly set default border to none, so viewports can ignore non-existent borders.

2016-11-29 Thread Yishay Weiss
I ended up taking a different approach because changing the default border style exposed a different bug in FlexJS [1] [1] https://issues.apache.org/jira/browse/FLEX-35189 From: Yishay Weiss<mailto:yishayj...@hotmail.com> Sent: Tuesday, November 29, 2016 8:53 AM To: dev@flex.apac

RE: [FlexJS, MDL] Add icon to DeletableChip

2016-11-30 Thread Yishay Weiss
Yes, I mean loading inside DeletableChip. From: piotrz Sent: Wednesday, November 30, 2016 12:06 PM To: dev@flex.apache.org Subject: Re: [FlexJS, MDL] Add icon to DeletableChip Hi Yishay, How would I use such util in my case when I

RE: [DISCUSS] Have a Flex project summit at ApacheCon NA 2017?

2016-12-01 Thread Yishay Weiss
It sounds like a good idea, but I’m not sure I’d have the resources to fly across the Atlantic for that. I’m hoping for a European (or Middle Eastern) event. From: Christofer Dutz Sent: Thursday, December 1, 2016 10:37 AM To: dev@flex.apache.org

RE: [FlexJS, MDL] Add icon to DeletableChip

2016-12-01 Thread Yishay Weiss
s far as I know. From: Yishay Weiss<mailto:yishayj...@hotmail.com> Sent: Wednesday, November 30, 2016 12:58 PM To: dev@flex.apache.org<mailto:dev@flex.apache.org> Subject: RE: [FlexJS, MDL] Add icon to DeletableChip Yes, I mean loading inside DeletableChip. From: piot

RE: [FlexJS, MDL] Add icon to DeletableChip

2016-12-01 Thread Yishay Weiss
I’m not sure I understand the scenario. Do you mean that a user can abuse the mxml and feed duplicate beads to the strand? From: piotrz Sent: Friday, December 2, 2016 12:51 AM To: dev@flex.apache.org Subject: RE: [FlexJS, MDL] Add ic

RE: [FlexJS] Conditional compilation in user projects

2016-12-05 Thread Yishay Weiss
In our project we started out with conditional compilation but we decided we didn't really need it. I think part of the appeal of FlexJS is that it's AS3/MXML only. If application devs start mixing it up with JS, their projects will probably start suffer from typical JS project maladies. Keepin

RE: [FlexJS] Conditional compilation in user projects

2016-12-05 Thread Yishay Weiss
Links should be [1] https://paste.apache.org/SQ8J [2] https://paste.apache.org/isny From: Yishay Weiss<mailto:yishayj...@hotmail.com> Sent: Monday, December 5, 2016 2:38 PM To: dev@flex.apache.org<mailto:dev@flex.apache.org> Subject: RE: [FlexJS] Conditional compilation in u

RE: [FALCONJX][FLEXJS} SWF Subclass (and other) Overrides

2016-12-05 Thread Yishay Weiss
Sounds good. Will you be addressing code-hinting issues? From: Alex Harui Sent: Monday, December 5, 2016 8:50 PM To: dev@flex.apache.org Subject: [FALCONJX][FLEXJS} SWF Subclass (and other) Overrides Hi, I just pushed changes to allow c

RE: [FlexJS] Flash Only Beads

2016-12-07 Thread Yishay Weiss
I agree. I just think it’s better to have the same source compile to flash and HTML, if only for testing purposes. Right now, if you use SolidBackgroundBead in your app it’ll compile for flash but not for HTML. We currently have a problem in our app that only manifests in HTML. It would be good

FW: [FlexJS] rowIndex in item renderer

2016-12-10 Thread Yishay Weiss
From: Yishay Weiss<mailto:yishayj...@hotmail.com> Sent: Sunday, December 11, 2016 8:01 AM To: Carlos Rovira<mailto:carlosrov...@apache.org> Subject: RE: [FlexJS] rowIndex in item renderer Try reading index instead of rowIndex. rowIndex doesn’t look like it gets updated which is pr

RE: [FlexJS] About Component Cycle and Events

2016-12-11 Thread Yishay Weiss
We’ve been using the ‘beadsAdded’ event as a ‘creationComplete’ replacement. This is fired by all UIBase derivatives (including MXMLItemRenderer) after they’ve been added to the parent, and all their beads have been added. I think the rest of the relevant events depend on the component, but Alex

[FlexJS] Build Failing

2016-12-12 Thread Yishay Weiss
After doing C:\dev\flexjs\flex-asjs > ant clean all I get this: [compc] C:\dev\flexjs\flex-asjs\frameworks\projects\Language\src\main\flex\o rg\apache\flex\utils\Language.as(327): col: 9 Error: Access of undefined propert y DEBUG in package goog. [compc] [compc] i

RE: [FlexJS] Build Failing

2016-12-12 Thread Yishay Weiss
That did the trick. Thanks. From: Alex Harui<mailto:aha...@adobe.com> Sent: Monday, December 12, 2016 4:15 PM To: dev@flex.apache.org<mailto:dev@flex.apache.org> Subject: Re: [FlexJS] Build Failing Sync up flex-typedefs On 12/12/16, 1:27 AM, "Yishay Weiss" wrote:

RE: [FlexJS] Build Failing

2016-12-14 Thread Yishay Weiss
not exist. From: Yishay Weiss<mailto:yishayj...@hotmail.com> Sent: Monday, December 12, 2016 5:33 PM To: dev@flex.apache.org<mailto:dev@flex.apache.org> Subject: RE: [FlexJS] Build Failing That did the trick. Thanks. From: Alex Harui<mailto:aha...@adobe.com> Sent: Monday, D

  1   2   >