Re: [FlexJS] Trick to adding properties?

2016-07-24 Thread Peter Ent
I'm not at my computer to check, but I think Chart Example uses the SolidColor and SolidColorStroke in MXML. Is that what you are trying to do? Peter > On Jul 24, 2016, at 7:43 PM, Alex Harui wrote: > > Looks like there were a couple of problems: > > > 1. ViewDataBinding was commented ou

Re: [FLEXJS, TYPEDEFS]

2016-07-25 Thread Peter Ent
d it worked for me. > >Did you run 'ant wipe' in flex-typedefs after switching to the develop >branch? Since that was the repo that was on the wrong branch it might >have some cruft in it that is messing up the flex-falcon build. > >-Alex > >On 7/22/16, 1:33 PM, "

Re: [FLEXJS, TYPEDEFS]

2016-07-25 Thread Peter Ent
and could have left cruft. > >-Alex > >On 7/25/16, 7:23 AM, "Peter Ent" wrote: > >>So back to this. >> >>This morning I did a new pull from flex-falcon/typedefs/asjs just to be >>certain, I think a couple of new things came down. >> >>

Re: [FLEXJS, TYPEDEFS]

2016-07-25 Thread Peter Ent
do you have a FLEX_FALCON environment variable pointing somewhere >other than flex-falcon? > >-Alex > >On 7/25/16, 7:34 AM, "Peter Ent" wrote: > >>Yes, I had done that as well. So this time I did: >> >>typedefs: ant wipe >>falcon:ant wipe-a

Re: [FLEXJS, TYPEDEFS]

2016-07-25 Thread Peter Ent
Got this to work with help from Alex. I had FALCONJX_HOME pointing to an old directory: flex-falcon/compiler.jx; it should have been pointing to flex-falcon/compiler-jx —peter From: Alex Harui mailto:aha...@adobe.com>> Date: Monday, July 25, 2016 at 11:42 AM To: Peter Ent mailto:p...@ado

Re: Changed svg namespace

2016-07-26 Thread Peter Ent
Hi, For my own education, I just wanted to get some clarification. With regards to SVG, when you use it, it looks something like this in the HTML file: With Canvas, there aren't any graphic elements, you just have and then JS code to draw the rects (or whatever). Were you th

Re: AW: [FLEXJS, TYPEDEFS]

2016-07-26 Thread Peter Ent
>________ >Von: Peter Ent >Gesendet: Montag, 25. Juli 2016 20:05:49 >An: Alex Harui; dev@flex.apache.org >Betreff: Re: [FLEXJS, TYPEDEFS] > >Got this to work with help from Alex. I had FALCONJX_HOME pointing to an >old directory: flex-falcon/compile

Re: Changed svg namespace

2016-07-26 Thread Peter Ent
I actually just followed some examples from Om. We have our element as the root of a component which would be the . This is positioned and so anything drawn in it would start a (0,0). So to me, this makes sense for how it is being done at the moment. ‹peter On 7/26/16, 3:52 PM, "Harbs" wrote: >

Re: [FlexJS] Something broke in CreateJS

2016-07-26 Thread Peter Ent
Yes, I added a dependency on the Effects project to CreateJS so that the CreateJS SWF side would be able to look similar to SWF side. I changed the dependency in the upper build xml file. What's necessary to get it work for Maven? ‹peter On 7/26/16, 4:37 PM, "Christofer Dutz" wrote: >Hi, > > >s

Re: AW: [FlexJS] Something broke in CreateJS

2016-07-26 Thread Peter Ent
Ok, thanks. I'll try to remember to fix up the maven side when something like this happens. ‹peter On 7/26/16, 5:01 PM, "Christofer Dutz" wrote: >Ok ... so it turned out the CreateJS was missing two dependencies to the >Effects module. I added them and things compiled again. > > >Chris > >_

Re: Changed svg namespace

2016-07-26 Thread Peter Ent
Rect needs to wrap the svg. Why can’t it just >be a pure rect element and be required to be added to an svg or g element? > >On Jul 26, 2016, at 11:55 PM, Peter Ent wrote: > >> I actually just followed some examples from Om. We have our element as >>the >> root of a com

Re: FlexJS hitTestPoint

2016-07-28 Thread Peter Ent
I would think this might also be a good bead candidate. It could be added as a bead to the View or some container. This way you'd only bring in that code to the app if the app really needed it. ‹peter On 7/28/16, 2:36 AM, "Alex Harui" wrote: > > >On 7/27/16, 11:03 PM, "Harbs" wrote: > >>The ot

Re: FlexJS Effects

2016-07-28 Thread Peter Ent
That part I don't know about, but I think it must be a "to-do" item. The CreateJS project either uses CreateJS effects for the HTML side or it uses the FlexJS library for the SWF side. ‹peter On 7/28/16, 4:16 AM, "Harbs" wrote: >I noticed that Effects is not using CSS. Is there a reason for tha

[FlexJS] Examples Ready

2016-08-05 Thread Peter Ent
thanks for the feedback. Regards, Peter Ent Adobe Systems/Apache Flex Project

Re: FlexJS Image.source

2016-08-08 Thread Peter Ent
Maybe images should be set with beads instead. The ImageURLBead, ImageBinaryBead, etc. Peter On 8/8/16, 10:04 AM, "Alex Harui" wrote: >How do you set a binary image to a tag in HTML? > >Otherwise, my first reaction is that this sounds like a separate >BitmapImage component. > >Thoughts? >-Alex

Re: AW: FlexJS Image.source

2016-08-08 Thread Peter Ent
Building on Alex's response, or Š .pngImage { src: "image/star.png"; IBeadView: ClassReference("org.apache.flex.html.beads.PNGImageViewBead"); } .blobImage { src: "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGo lfO0

[FalconJX] "in" operator issue

2016-08-08 Thread Peter Ent
Hi, I was going through the FlexJS examples after re-syncing changes to falcon and discovered an issue in ConstantBinding: In the ConstantBinding code, this line: if (sourcePropertyName in source) is being cross-compiled to JavaScript: if (this.sourcePropertyName in this.source.toString()) {

Re: FlexJS Image.source

2016-08-09 Thread Peter Ent
I think you need to be consistent for models and views and follow the pattern. Every component should have a model, view, and controller unless having such a thing on all platforms makes no sense. Imagine I'm an application writer and I want to make a component with an image that displays differen

Re: FlexJS Image.source

2016-08-09 Thread Peter Ent
nother property would probably subclass it. > >I considered an extension of Image that caches images, or an extension >that does scaling, photo effects, etc. Should we use extensible models >and views to support those cases? > >-Alex > >On 8/9/16, 7:30 AM, "Peter Ent"

[FlexJS] refactor_sprite branch

2016-08-09 Thread Peter Ent
Hi, I've gotten a copy of the refactor_sprite branch. While everything builds (need to skip the tests, though), most of the examples won't build due to the "source" property changing for Image. Do y'all have an estimate when you might resolve this? Thanks, Peter

Re: [FlexJS] refactor_sprite branch

2016-08-10 Thread Peter Ent
s wrote: > >> I tried to change that in the examples. I obviously missed some. >> >> I changed ³source² to ³url². I think that makes more sense. >> >> On Aug 10, 2016, at 12:16 AM, Peter Ent wrote: >> >>> Hi, >>> >>> I've go

Re: [FlexJS] refactor_sprite branch

2016-08-10 Thread Peter Ent
/core/ ApplicationFactory.as:78] and the JS version seems to hang the browser to slow it way down. When I run MobileTrader, the JS version looks OK, but the SWF version gives an immediate error: VerifyError: Error #1014: Class mx.core::IFlexModuleFactory could not be found. —peter On 8/10/16, 11:42 AM, "

Re: [FlexJS] refactor_sprite branch

2016-08-10 Thread Peter Ent
I have the Aug 1 compile. Is the .toString() thing fixed? I'll check it out anyway and give it a try. ‹peter On 8/10/16, 4:03 PM, "Alex Harui" wrote: >I will try to make a unit test out of the test case you cited. In theory >if the expression resolves to a String no implicit conversion will be

Re: [FlexJS] refactor_sprite branch

2016-08-10 Thread Peter Ent
iable _MobileTrader_org_apache_flex_core_ApplicationFactory is not defined. ‹peter On 8/10/16, 3:21 PM, "Alex Harui" wrote: > > >>On Aug 10, 2016, at 9:18 PM, Peter Ent wrote: >> >>> When I run MobileTrader, the JS version looks OK, but the SWF version >>&g

Re: FlexJS What's the point of positioner?

2016-08-11 Thread Peter Ent
We separated them when we thought that a Flex-style CheckBox or RadioButton would be a composition of a (positioned) with child nodes of (element) and for the label. This way you could move the CheckBox group would via the positioned while still addressing the actual check or radio element. Mig

Re: [FlexJS] refactor_sprite branch

2016-08-11 Thread Peter Ent
or me. Alter the ant script for MobileTrader to spit out the >FALCON_HOME value. > >-Alex > >On 8/10/16, 1:58 PM, "Peter Ent" wrote: > >>I sync'd up with the latest falcon and rebuilt (ant all), rebuild >>flex-asjs (refactor-sprite branch), rebuild Mo

Re: [FlexJS] refactor_sprite branch

2016-08-11 Thread Peter Ent
I wish when these changes were made a more explicit email would be sent. Not too long ago I found some other old folder and changed it. ‹peter On 8/11/16, 11:14 AM, "Alex Harui" wrote: > > >On 8/11/16, 7:24 AM, "Peter Ent" wrote: > >>I have this: >>

Re: [FlexJS] refactor_sprite branch

2016-08-11 Thread Peter Ent
te: > > >On 8/11/16, 7:24 AM, "Peter Ent" wrote: > >>I have this: >> >>[echo] >>FALCON_HOME=/Users/pent/dev/flex-falcon/compiler/generated/dist/sdk >> [echo] FALCONJX_HOME=/Users/pent/dev/flex-falcon/compiler-jx >> >> >&

Re: [FlexJS] refactor_sprite branch

2016-08-11 Thread Peter Ent
string is not a function. On 8/11/16, 11:39 AM, "Peter Ent" wrote: >Thanks. I now have mobile trader working. That example requires >FALCON_HOME to be set to the compiler directory but I didn't need it for >DataBindingExample. I'll see what others need it. Seems

Re: [FlexJS] refactor_sprite branch

2016-08-12 Thread Peter Ent
Number('px'); Number('px') isn't correct so all of the style widths and heights are not being set. —peter On 8/11/16, 5:21 PM, "Peter Ent" wrote: >I ran a couple just now. > >ChartExample - >SWF: OK >JS: No errors but everything is drawn up in

Re: [FlexJS] need help in creating reusable tabBar control

2016-08-14 Thread Peter Ent
Take a look at the MobileTrader example in the FkexJS project. There's a tab bar component it uses. Peter > On Aug 13, 2016, at 12:49 AM, Alex Harui wrote: > > Hi Dhwani, > > Did you try extending ButtonBar? > > Thanks, > -Alex > >> On 8/12/16, 3:16 PM, "dhwanishah85" wrote: >> >> Hi,

Re: [FlexJS] refactor_sprite branch

2016-08-15 Thread Peter Ent
After seeing a number of commits over the weekend, I sync'd Falcon and FlexJS repos and rebuilt. It looks like things are back to normal, but I'll run through more examples. Thanks! —peter From: Alex Harui mailto:aha...@adobe.com>> Date: Friday, August 12, 2016 at 4:37

Re: [FlexJS] need help in creating reusable tabBar control

2016-08-17 Thread Peter Ent
I took a look at the code, assuming you mean that you wanted the tabs on the top of the screen. If you look at org/apache/flex/mobile/beads/TabbedViewManagerView - which is the view bead the TabbedViewManager uses - you'll see layoutChromeElements function. This is where the tab bar is being place

Re: [FlexJS] ElementWrapper.forwarder() Changes Target

2016-08-18 Thread Peter Ent
I think I'm leaning more toward agreeing with you, Harbs, about a Flex event bus. I remember changing MouseEvent because of some issue (have to look at the logs) with it being a subclass of Event. If we make it a rule that every FlexJS component only work with org.apache.flex.events.Event (or a sub

Re: [FlexJS] ElementWrapper.forwarder() Changes Target

2016-08-18 Thread Peter Ent
l and if it can be done without duplication that would be great. I guess a duplicate event system that really brings nothing else to the table would not be worth it if there were alternatives. ‹peter On 8/18/16, 2:38 PM, "Alex Harui" wrote: > > >On 8/18/16, 10:42 AM, "P

Re: [VOTE] Release Apache Flex FalconJX 0.7.0 RC1

2016-09-07 Thread Peter Ent
LICENSE is ok: y No unapproved licenses or files in jars: y No unapproved licenses or archives in binary package: y No unapproved binaries in binary package: y Peter Ent Adobe Systems/Apache Flex Project On 9/5/16, 10:39 AM, "Alex Harui" wrote: >Hi, > >This is vote for the 0

Re: [VOTE] Release Apache FlexJS 0.7.0 RC1

2016-09-07 Thread Peter Ent
Peter Ent Adobe Systems/Apache Flex Project On 9/5/16, 10:39 AM, "Alex Harui" wrote: >Hi, > >This is vote for the 0.7.0 release of Apache FlexJS. > >The release candidate can be found here; >https://dist.apache.org/repos/dist/dev/flex/flexjs/0.7.0/rc1/ > >Befor

[FlexJS] Project Idea

2016-09-07 Thread Peter Ent
timeframe at the moment. Peter Ent Adobe Systems/Apache Flex Project

Re: [FlexJS]Image

2016-09-12 Thread Peter Ent
not really sure why the JS side would need a view. It may be that I was experimenting with making both sides always follow the same pattern and just checked in that code accidentally. Peter Ent Adobe Systems/Apache Flex Project On 9/12/16, 4:19 AM, "Harbs" wrote: >The Image comp

Re: [FlexJS]Image

2016-09-12 Thread Peter Ent
rsal, then the code you see for the JS side would not be needed. ―peter On 9/12/16, 9:31 AM, "Peter Ent" wrote: >I'll have to see what happens when these lines are removed. The Flash side >nearly always has model and view beads to build the components but the JS >side

Re: [FlexJS]Image

2016-09-12 Thread Peter Ent
I updated the defaults.css in the HTML project to include the Image's model and view for SWF and JS and removed this code fragment. ―peter On 9/12/16, 10:01 AM, "Peter Ent" wrote: >I had to go back and look into it all again. This code is necessary. The >source property

Re: AW: [FlexJS]Image

2016-09-13 Thread Peter Ent
pache.org >Betreff: Re: [FlexJS]Image > >Thanks. > >I’ll clean up BinaryImage as well when I have the opportunity. > >On Sep 12, 2016, at 8:35 PM, Peter Ent wrote: > >> I updated the defaults.css in the HTML project to include the Image's >> model and view f

Re: flexjs ,pack full folder in a js.

2016-09-19 Thread Peter Ent
This latest email is a really good explanation of how things work. Do we have this captured in a wiki page? Peter On Sep 19, 2016, at 11:51 AM, Alex Harui mailto:aha...@adobe.com>> wrote: On 9/19/16, 12:09 AM, "lizhi" mailto:s...@qq.com>> wrote: and my code not the same as createjs. my cod

Re: [FlexJS] DateChooser in FlexJS 0.7 fails in swf mode, doesn't render correctly in javascript mode

2016-10-10 Thread Peter Ent
I'm looking into it this morning. Regards, Peter Ent Adobe Systems/Apache Flex Project On 10/8/16, 5:15 AM, "Pan Li" wrote: > > >Hi everyone! > >DateChooser control fails to me in FlexJS 0.7 in swf mode: >the problem can be reproduced with only two lines of co

Re: [FlexJS] DateChooser in FlexJS 0.7 fails in swf mode, doesn't render correctly in javascript mode

2016-10-10 Thread Peter Ent
I've committed a fix to DateChooser. The problem was that DateChooser was looking for background and border beads on the SWF side which were not defined in the defaults.css. Further, had those beads been defined, DateChooser would not have used them correctly. Please take a new nightly build which

Re: [FlexJS]DateField control is broken

2016-10-12 Thread Peter Ent
I will look into this. Thanks for finding it. Peter Ent Adobe Systems/Apache Flex Project On 10/12/16, 12:43 AM, "Pan Li" wrote: > > > DateField is not working in FlexJS 0.7 > >it pops error when starting in awf mode >it does show in javascript mode but it

Re: [FlexJS]DateField control is broken

2016-10-12 Thread Peter Ent
Hi, I have committed and pushed a change to fix this. The problem was that the DateFieldMouseController was being sent a MouseEvent but was typed to receive a Event. The next successful build should have this change or you can pick it up from the repo now. Regards, Peter On 10/12/16, 12:43 AM, "

Re: [FlexJS] Form component?

2016-10-17 Thread Peter Ent
Shouldn't it be possible for the action on a to trigger an event that the application code (or its main controller) could use that would then decide to either open a new URL or go to a different FlexJS view? Usually, I would think, an HTML Form's action takes you to another part of the web "applic

Re: [FlexJS] Form component?

2016-10-17 Thread Peter Ent
w >(maybe some wrong compilation), and right now if you hit ENTER, it goes to >www.example.com, so regarding what you say, you mean to add some >controller/model to the implementation? > > >2016-10-17 14:28 GMT+02:00 Peter Ent : > >> Shouldn't it be possible for the action

Re: [FlexJS] Form component?

2016-10-17 Thread Peter Ent
ld come to FlexJS and will try this >as >one of the first things. > >Thanks > > > >2016-10-17 16:42 GMT+02:00 Peter Ent : > >> >> When you do this in HTML, the action (eg, >> www.example.com?q=loc=miami&data=weather) sends all of the fields to the >&

[FlexJS] Mobile Apps

2016-10-21 Thread Peter Ent
ye" which is just minimal, so contribute some updates to that, if you can. [1] https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=63406558 Regards, Peter Ent Adobe Systems/Apache Flex Project

Re: [FlexJS] Mobile Apps

2016-10-21 Thread Peter Ent
that we don't know where came >from. and start from a clean state. > >I think this is something like a prerequisite in order to be able to work >in some kind of styling. > >Hope I could first build MobileStocks and try on my iPhone to get a look >at >what we are talking

Re: [FlexJS] Mobile Apps

2016-10-21 Thread Peter Ent
ure, is completely made to >>use >> the MDL style... >> >> looking at the MobileStocks code, it seems, the approach is the first >>one, >> since is all made with FlexJS comps. In that scenario, I think we need >>as >> well a way to not be bloated with C

Wiki Edit Access

2013-08-08 Thread Peter Ent
nyone know? Thanks, Peter Ent Flex SDK Team Adobe Systems

Re: Wiki Edit Access

2013-08-08 Thread Peter Ent
ee called "FlexJS" since that seems >to be the term folks are using for this effort these days and the name I >used at 360|Stack. > >Let me know if you have trouble adding a new top-level page. > >-Alex > >On 8/8/13 12:00 PM, "Peter Ent" wrote: > &g

Re: Wiki Edit Access

2013-08-08 Thread Peter Ent
>You've logged in and see the Edit button on some pages but not all under >confluence/display? > >How did you find the URL of the .html file to access directly? > >-Alex > >On 8/8/13 12:28 PM, "Peter Ent" wrote: > >>There is no edit button

Re: Wiki Edit Access

2013-08-12 Thread Peter Ent
Thanks. I'm using the pages as I found them this morning. --peter On 8/12/13 10:29 AM, "Kessler CTR Mark J" wrote: >Ok. Peter created the FlexJS [1] top level, so start placing your >finished work here. The original works that are works in progress are >located at [2] still. > >[1] https://cwi

Re: FlexJS

2013-08-13 Thread Peter Ent
Hi, >From what I can tell from your log, you are on Windows using JDK 7, is that >correct? If so, I'll haul out my Windows laptop and attempt to duplicate the >problem. Peter Ent Flex SDK Team Adobe Systems From: Christian Jonathan mailto:jonathan.christ...@kohler.com>

Re: FlexJS

2013-08-14 Thread Peter Ent
directory. I did not have to change the permission settings on any files. I have to emphasize that I have not used this Windows 7 laptop in a while (not since Mustella days, actually), so this was a pretty clean install. Peter Ent Flex SDK Team Adobe Systems On 8/13/13 12:12 PM, "Alex

[ANNOUNCE] FlexJS Component Wiki Page

2013-08-19 Thread Peter Ent
rial makes it harder to see those things. Thanks, Peter Ent Flex SDK Team Adobe Systems [1] https://cwiki.apache.org/confluence/display/FLEX/Creating+Components

Re: [ANNOUNCE] FlexJS Component Wiki Page

2013-08-20 Thread Peter Ent
er > > >On Mon, Aug 19, 2013 at 1:23 PM, Mark Kessler >wrote: > >> I like the formatting. It's well grouped and easy to read. >> >> -Mark >> >> >> On Mon, Aug 19, 2013 at 1:15 PM, Peter Ent wrote: >> >> > Hello, >> > &g

Re: [FlexJS] Getting errors with FlexJS & a simple Flex program

2013-08-30 Thread Peter Ent
ough draft at first, but I hope that will help. To answer your question, the develop branch is the correct branch. Thanks for helping us. Regards, Peter Ent Flex SDK Team Adobe Systems On 8/30/13 1:31 PM, "Sharma, Pratyoosh" wrote: >Alex et al. > >I am trying to extend th

Re: [FlexJS] Getting errors with FlexJS & a simple Flex program

2013-08-30 Thread Peter Ent
m [mailto:omup...@gmail.com] On Behalf Of OmPrakash >Muppirala >Sent: Friday, August 30, 2013 2:18 PM >To: dev@flex.apache.org >Subject: Re: [FlexJS] Getting errors with FlexJS & a simple Flex program > >On Fri, Aug 30, 2013 at 11:10 AM, Peter Ent wrote: > >> Hi

Re: [FlexJS] Getting errors with FlexJS & a simple Flex program

2013-08-30 Thread Peter Ent
apache.org/confluence/display/FLEX/Application+Structure Peter On 8/30/13 2:17 PM, "OmPrakash Muppirala" wrote: >On Fri, Aug 30, 2013 at 11:10 AM, Peter Ent wrote: > >> Hi, >> >> I'm the author of the Creating Components wiki page for FlexJS. Please >>let

JavaScript List component for FlexJS

2013-09-06 Thread Peter Ent
heers, Peter Ent Flex SDK Team Adobe Systems

Re: FlexJS next?

2013-09-10 Thread Peter Ent
g like Web Components, you can. There is already a few HTML 5 components in the project, but they are really just starters. It would be great if someone could build those out, too. The current set up might not work as seamlessly as you describe, but that's today; anything is possible in the fut

Re: git commit: [flex-asjs] [refs/heads/develop] - Changed property name from "url" to "source" to be compatible with Flex and HTML.

2013-09-11 Thread Peter Ent
> >>> > >>> >On Wed, Sep 11, 2013 at 8:48 AM, wrote: >>> > >>> >> Updated Branches: >>> >> refs/heads/develop a1f8929b3 -> 426c2e1eb >>> >> >>> >> >>> >> Changed property name from

Customer ItemRenderer Sample for FlexJS

2013-09-13 Thread Peter Ent
Hi, I've created a wiki page[1] and a sample to show how to make a custom itemRenderer using FlexJS. [1] https://cwiki.apache.org/confluence/display/FLEX/List+Component Regards, Peter Ent Adobe Systems

Re: [FlexJS] StatesTest example app broken?

2013-09-19 Thread Peter Ent
I am looking into this. --peter On 9/19/13 1:03 AM, "Alex Harui" wrote: >I haven't tried StatesTest in a while. Can you work with DataBindingTest >instead? It should have everything StatesTest has and more. > >-Alex > >On 9/18/13 9:58 PM, "OmPrakash Muppirala" wrote: > >>I picked this project

Re: [FlexJS] StatesTest example app broken?

2013-09-19 Thread Peter Ent
cked up. I'm going to try DataBindingTest and see how that goes. --peter On 9/19/13 11:12 AM, "Peter Ent" wrote: >I am looking into this. >--peter > >On 9/19/13 1:03 AM, "Alex Harui" wrote: > >>I haven't tried StatesTest in a while. Can you work with D

Re: [FlexJS] StatesTest example app broken?

2013-09-19 Thread Peter Ent
italization is right, >and that it is using the same ValuesImpl as DataBindingTest. > >On 9/19/13 9:02 AM, "Peter Ent" wrote: > >>I'm not making any headway on this. There is a global style declaration >>which should associate a stat

Re: [FlexJS] StatesTest example app broken?

2013-09-20 Thread Peter Ent
>the MXMLDataIntepreter which assigns the states. > >Which made me look at the call stack and again, there is the dreaded >XXX_c() which means that Falcon did not compile the SWF, MXMLC did. > >-Alex > >On 9/19/13 10:58 AM, "Peter Ent" wrote: > >>As far as I

Re: [FlexJS] Modal behavior on dialogues

2013-09-24 Thread Peter Ent
he ActionScript and JavaScript parts closer to together, so this might be the opportunity to do the same for Alert. Regards, Peter Ent Adobe Systems On 9/24/13 12:47 PM, "Sharma, Pratyoosh" wrote: >Hi Peter et al. > >I took a first stab at creating modal behavior bead on th

Re: [FlexJS] FLEX-33778 Combobox & DropdownList ListBase.js throws a NPE

2013-09-25 Thread Peter Ent
I'm taking a look now. I did make some changes to the list code recently, so maybe I hit this already. --peter On 9/25/13 12:17 PM, "Alex Harui" wrote: >Hi Pratyoosh, > >One of us will take a look. In theory the model gets assigned early in >the lifecycle (and pulled from the CSS iBeadModel sty

Re: [FlexJS] IFlexInfo

2013-09-26 Thread Peter Ent
I should add that I have not updated the jQuery sample to reflect the changes that have been happening to the "standard" JavaScript code. I figured I would sort that out once things became more complete and stable. --peter On 9/26/13 9:17 AM, "Alex Harui" wrote: > > >On 9/25/13 11:57 PM, "OmPra

FlexJS Dynamic Controls

2013-10-09 Thread Peter Ent
Hi, I've spent some time on an experiment in FlexJS. Right now we have all of the components sitting in one package called, "staticControls". The intent of this package was to have controls that were relatively simple and had direct or close approximation with HTML elements. For example, Button

Re: FlexJS Dynamic Controls

2013-10-10 Thread Peter Ent
ugh you will need to fully qualify them to avoid ambiguity). Anyway, just some ideas to put out there. --peter On 10/10/13 7:52 AM, "Tom Chiverton" wrote: >On 09/10/2013 19:33, Peter Ent wrote: >> "staticControls". The intent of this package was to have controls &g

Re: Garbage Collection Concern

2013-10-11 Thread Peter Ent
f the event should be handled, stop its propagation. There are lots of possibilities. Peter Ent Flex SDK Team Adobe Systems On 10/11/13 12:00 PM, "Thomas Wright" wrote: >ok ok, I get what you guys are saying. >Gotcha, thanks :) > > >On Fri, Oct 11, 2013 at 9:45 AM, Lee Bu

Re: [FlexJS] IFlexInfo

2013-10-14 Thread Peter Ent
I can confirm that the new FlexJSOverlay.zip does run the jQuerySample and DataBindingTest. --peter On 10/11/13 6:30 PM, "Alex Harui" wrote: >I uploaded a new FlexJSOverlay.zip. It builds and runs the >DataBindingTest and JQuerySample. > >I discovered that if you don't specify the compiler argu

Re: [FlexJS] PopUp implementation

2013-10-22 Thread Peter Ent
Yes, thanks Pratyoosh for looking into this and helping out! I could imagine someone wanting to make a custom pop-up by doing something like: Š (but maybe in ActionScript) so having popup-ability be a good would be a good thing. But a lot of controls wouldn't make sens

Re: [FlexJS] PopUp implementation

2013-10-24 Thread Peter Ent
I once saw someone's re-imaging of an alert that wasn't a pop-up. In their vision, the view broken in half with the top and bottom sliding away to reveal the alert "beneath". It was a cool effect. This was on a phone, BTW. If we always assume Alerts pop-up it might limit what people can do. I'd li

Re: [FlexJS] Handling interfaces

2013-10-30 Thread Peter Ent
Thanks, Erik. Interesting read. FlexJS uses a lot of interfaces so we'll have to find a reasonable solution for this. We've managed to avoid the situation in JavaScript but it is coming up quickly. --peter On 10/30/13 3:10 PM, "Erik de Bruin" wrote: >Some guidance can be found here [1] and here

[FlexJS] DataGrid

2013-11-05 Thread Peter Ent
beads from the style sheet which cleaned them up a quite a bit. There is still more work to do on that front but so far it works quite well. Regards, Peter Ent Flex SDK Team Adobe Systems

Re: [FLEXJS] JS framework: gjslint

2013-11-06 Thread Peter Ent
I checked a number of files in yesterday and I'm pretty sure a handful won't pass glint right now; I meant to do them all, but forgot some so I'm doing them this morning. If you want to go ahead and run the tool just to see if and how failures pop-up, go right ahead. --peter On 11/6/13 2:40 AM, "

Re: [FLEXJS] JS framework: gjslint

2013-11-06 Thread Peter Ent
e on the JS side. I think the idea is to make the JS >side mirror the structure of the AS side as closely as possible? > >And lastly (yeah, right... ;-)) how about the examples? Which ones are >working for you, either in debug mode or in both debug AND release >mode? > >EdB >

Re: [FLEXJS] JS framework: gjslint

2013-11-07 Thread Peter Ent
Thanks, Erik. I'll make sure I run those tools on the JS code before checking stuff in. --peter On 11/7/13 9:05 AM, "Erik de Bruin" wrote: >Ok, I have pushed the 'JSHint - gjslint' commits. > >The framework classes are now clean against this gjslint command: > >gjslint --strict --disable 0100 -

Re: [FLEXJS] DataBinding example does not work

2013-11-11 Thread Peter Ent
on't see how the lower-case I comes into play. I keep meaning to ask Alex, but I always forget. Peter Ent Flex SDK Team Adobe Systems On 11/11/13 3:33 PM, "OmPrakash Muppirala" wrote: >Sorry, but I still have not been able to run the FlexJS example projects. > >I got

Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-13 Thread Peter Ent
On 11/13/13 3:19 AM, "OmPrakash Muppirala" wrote: >On Tue, Nov 12, 2013 at 8:27 PM, Alex Harui wrote: > >> Hi Om, >> >> Looks good. Some points to ponder: >> >> 1) Ideally, in a Pay-as-you-go philosophy, a rolloverIndex would not be >>in >> the ArraySelectionModel since, in theory, ArraySelec

[FLEXJS] ItemRenderers

2013-11-13 Thread Peter Ent
data.title; detail.text = data.detail; } The super.data = value got compiled into JavaScript as: set_data(value); when I think it should be goog.base(this,'set_data',value); I filed a bug on this previously and I'll either update that one or open a new one shortly. Thanks, Peter Ent Adobe Systems

[FalconJX] Build and install

2013-11-14 Thread Peter Ent
o figure it out with either no change (meaning things that were fix aren't fixed) or I can a Java Null Pointer error immediately probably because I didn't copy the right thing(s) to the right place(s). I'll be happy to update the README with the details. Thanks, Peter Ent Adobe Systems

Re: [FalconJX] Build and install

2013-11-14 Thread Peter Ent
dencies/GoogleClosure/ >library" >"/Users/erik/Documents/ApacheFlex/git/flex-asjs/examples/DataGridExample/s >rc/DataGridExample.mxml" > >Play with that for a bit, and let me know. I'm here to help out. > >EdB > > > >On Thu, Nov 14, 2013 a

Re: [FalconJX] Build and install

2013-11-14 Thread Peter Ent
Ah - that was the problem - I was on master, not develop. Thanks again. --peter On 11/14/13 11:09 AM, "Alex Harui" wrote: >Are you on the develop branch? > >On 11/14/13 8:05 AM, "Peter Ent" wrote: > >>I must have gotten the wrong thing from git. Here&#x

Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-14 Thread Peter Ent
On 11/14/13 2:55 PM, "OmPrakash Muppirala" wrote: >On Thu, Nov 14, 2013 at 11:45 AM, Alex Harui wrote: > >> >> >> On 11/14/13 10:57 AM, "OmPrakash Muppirala" >>wrote: >> >> >On Wed, Nov 13, 2013 at 9:12 PM, Alex Harui wrote: >> > >> >> >> >> >> >> On 11/13/13 8:26 PM, "OmPrakash Muppirala"

[FlexJS] Cannot start app

2013-11-18 Thread Peter Ent
oPath for goog.events.EventTarget new ListsTests().start(); ReferenceError: ListsTests is not defined new ListsTests().start(); I'm not sure what could be out of sync. Peter Ent Adobe Systems

[FALCONJX] [FLEXJS] AS to JS compilation issues

2013-11-19 Thread Peter Ent
Hi, I am attempting to take the DataGrid, written in ActionScript, and compile it into JavaScript to see if that's a viable way to build JavaScript components - or at least get a good head start on writing the JavaScript. I've run into a couple of issues since taking the most recent falcon cod

Re: [FALCONJX] [FLEXJS] AS to JS compilation issues

2013-11-19 Thread Peter Ent
arui wrote: >> Yep, those look like bugs to me. >> >> -Alex >> >> On 11/19/13 12:27 PM, "Peter Ent" wrote: >> >>>Hi, >>> >>>I am attempting to take the DataGrid, written in ActionScript, and >>>compile it into JavaScr

Re: [FALCONJX] [FLEXJS] AS to JS compilation issues

2013-11-20 Thread Peter Ent
219) at org.apache.flex.compiler.clients.MXMLJSC.main(MXMLJSC.java:181) Not sure if I need to update my Java or not (didn't have to do it yesterday). --peter On 11/19/13 4:33 PM, "Peter Ent" wrote: >I filed two tickets for each issue. > >Thanks. This is getting

Re: [FALCONJX] [FLEXJS] AS to JS compilation issues

2013-11-20 Thread Peter Ent
Alex created also need to be rebuilt with Java 1.7? --peter On 11/20/13 11:50 AM, "Erik de Bruin" wrote: >Yes, the latest thing: since the last compiler update we need Java >1.7, I'm afraid. > >EdB > > > >On Wed, Nov 20, 2013 at 4:25 PM, Peter Ent wrote: >>

Re: [FlexJS] JS Linting

2013-11-22 Thread Peter Ent
I recall the Erik recommended using it. I'll have to get a copy and see why types of things it is complaining about. My instinct is to suggest using it, but having experienced gjslint, I'm a little wary of over doing it. --peter On 11/22/13 3:46 PM, "Alex Harui" wrote: >I'm finishing up build s

[FALCON] Invalid download

2013-11-25 Thread Peter Ent
/pent/dev/flex-falcon/compiler/downloads.xml:137: Invalid bz2 file./Users/pent/dev/flex-falcon/compiler/in/lzma920.tar.bz2 I've tried building several times, just in case there was a network glitch or something. Regards, Peter Ent Adobe Systems

<    1   2   3   4   5   6   7   >