Re: [FlexJS] StatesTest example app broken?

2013-09-20 Thread OmPrakash Muppirala
On Fri, Sep 20, 2013 at 5:40 PM, Alex Harui wrote: > Maybe I'm not understanding what Peter wrote, but I think he also said > that it worked once the main app matched the project name. IOW, if you > create a FlexProject called OmTest, then when you copy the code from > DataBindingTest.mxml, you

Re: [FlexJS] StatesTest example app broken?

2013-09-20 Thread Alex Harui
Maybe I'm not understanding what Peter wrote, but I think he also said that it worked once the main app matched the project name. IOW, if you create a FlexProject called OmTest, then when you copy the code from DataBindingTest.mxml, you should copy that into your OmTest.mxml. You should have to f

Re: [FlexJS] StatesTest example app broken?

2013-09-20 Thread OmPrakash Muppirala
On Fri, Sep 20, 2013 at 5:23 PM, Alex Harui wrote: > In theory, if the project name matches the application.mxml name, then the > external tool should overwrite the swf and you shouldn't need to mess > around with the external tools and templates. > The problem is what Peter explained. The debu

Re: [FlexJS] StatesTest example app broken?

2013-09-20 Thread Alex Harui
In theory, if the project name matches the application.mxml name, then the external tool should overwrite the swf and you shouldn't need to mess around with the external tools and templates. Is that not working for you or does the application name have a different name than the project? Thanks, -

Re: Jenkins build is back to normal : flex-sdk_mustella-air #153

2013-09-20 Thread Justin Mclean
Much appreciated!

Re: Jenkins build is back to normal : flex-sdk_mustella-air #153

2013-09-20 Thread Mark Kessler
Thank you! On Fri, Sep 20, 2013 at 12:41 PM, Erik de Bruin wrote: > Well, it took some doing but all builds (builds@a.o. and the Mustella > VM) are back online and successfully building. > > Commit away! > > EdB > > > > On Fri, Sep 20, 2013 at 5:45 PM, wrote: > > See

Re: [FlexJS] StatesTest example app broken?

2013-09-20 Thread OmPrakash Muppirala
I fixed this for myself by doing this: In the FlexJS debug and release build external tool's arguments: Change: -output="${project_loc}\bin-debug\${project_name}.swf" to: -output="${project_loc}\bin-debug\${project_name}_flexjs.swf" Then, for each FlexJS project, we need to change index.template'

Re: Jenkins build is back to normal : flex-sdk_mustella-air #153

2013-09-20 Thread OmPrakash Muppirala
On Fri, Sep 20, 2013 at 9:41 AM, Erik de Bruin wrote: > Well, it took some doing but all builds (builds@a.o. and the Mustella > VM) are back online and successfully building. > > Commit away! > > Thanks again for staying on top of this. When we say things like committers are not checking code in

RE: multi threaded for datagrid component rendering

2013-09-20 Thread Jack Yu
anyone knows if flash player will implement multi thread rendering on datagrid component? that can make the large datagrid, like spreadsheet, much more usable. Can we suggest this multi thread datagrid rendering to Adobe flash player team? -Original Message- From: Alex Harui [mailto:ah

Re: [FlexJS] StatesTest example app broken?

2013-09-20 Thread Alex Harui
On 9/20/13 10:53 AM, "Erik de Bruin" wrote: >Before we decide to work on a FlexJS 'alpha' version, the process of >actually building an app needs to be way more accessible. For sure. >Maybe we >should abandon Flash Builder and start to work with a tool that's a >bit more 'open', which we are ab

Re: [FlexJS] StatesTest example app broken?

2013-09-20 Thread Erik de Bruin
Before we decide to work on a FlexJS 'alpha' version, the process of actually building an app needs to be way more accessible. Maybe we should abandon Flash Builder and start to work with a tool that's a bit more 'open', which we are able to modify/adapt for a more transparent workflow? Ideas? EdB

Re: [FlexJS] StatesTest example app broken?

2013-09-20 Thread Peter Ent
With a little direction from Alex, I'm able to run the app too. Here's what happened to me: I created a new Flex project and then imported the code from DataBindingTest. I deleted the default application Flash Builder created and I then changed the project's properties and made DataBindingTest.mxm

RE: Event object pooling

2013-09-20 Thread Michael A. Labriola
>IIRC, it would require a player change. If you dispatch an event with the >target already >filled out, the player clones a new instance and dispatches >that instead. And by spec, target is immutable so you would be going against specification as well. Mike

RE: Event object pooling

2013-09-20 Thread Kessler CTR Mark J
I seem to remember going down this road before which modifying the event handling / dispatching / removing before. It's rolling your own entire eventDispatcher ( IE like starling did) or you'll have to rely on flash player changes which aren't likely. The argument that was given about not roll

Re: Jenkins build is back to normal : flex-sdk_mustella-air #153

2013-09-20 Thread Erik de Bruin
Well, it took some doing but all builds (builds@a.o. and the Mustella VM) are back online and successfully building. Commit away! EdB On Fri, Sep 20, 2013 at 5:45 PM, wrote: > See > -- Ix Multimedia Software Jan Luykenstraat

Re: Event object pooling

2013-09-20 Thread Alex Harui
IIRC, it would require a player change. If you dispatch an event with the target already filled out, the player clones a new instance and dispatches that instead. -Alex On 9/20/13 9:00 AM, "flexcapaci...@gmail.com" wrote: >Would creating an object pooling mechanism for new events improve >perf

Event object pooling

2013-09-20 Thread jude
Would creating an object pooling mechanism for new events improve performance? For example, if instead of calling new FlexEvent() we called var changeEvent:FlexEvent = FlexEvent.getEventFromPool(FlexEvent.Change); and then that method checks its object pool for an unused event instead of creating

Re: FocusManager issue with sparse focus groups

2013-09-20 Thread Alex Harui
You can follow the monkey patching method for trying out new versions of FocusManager. FWIW, I think the last time someone had this problem, I suggested that they use a Checkbox instead of RadioButton and use the RadioButtonSkin on the Checkbox. Then have their own logic that unselects the other

[OT] Recording of 360|Stack Web Session: This is your app on Web Components

2013-09-20 Thread Cyrill Zadra
Ist there a recording of this session? -> http://360stackwebsession2-estw.eventbrite.com/ Cyrill

Re: FocusManager issue with sparse focus groups

2013-09-20 Thread Cosma Colanicchia
I like "text pictures" :) but here is a snippet: http://pastebin.com/sYeHQKFQ I'd like to attemp a fix, must find the time to setup my environment (cannot rebuild the whole framework for each try). 2013/9/20 Alex Harui > I didn't see that in your 'text picture', but yes you are correct, the >

Re: FocusManager issue with sparse focus groups

2013-09-20 Thread Alex Harui
I didn't see that in your 'text picture', but yes you are correct, the FocusManager does not handle that condition. You're welcome to try to fix it. -Alex On 9/20/13 8:05 AM, "Cosma Colanicchia" wrote: >Absolutely, but if there are other controls "interleaved" with the radio >buttons of the sa

Re: Language only locale's

2013-09-20 Thread Alex Harui
I don't know this stuff that well, but sounds ok. Wouldn't this require the change to ResourceManagerImpl where it doesn't require that the locale have every bundle? -Alex On 9/19/13 11:09 PM, "Justin Mclean" wrote: >Hi, > >I took a quick look at the Locale code and the Resource Manager code a

Re: FocusManager issue with sparse focus groups

2013-09-20 Thread Cosma Colanicchia
This is the simplest way to reproduce it: [X] choice A [text input (maybe enabled when choice A is selected, to enter further info)] [ ] choice B [other controls] In this situation, when tab goes like this: choice A -> text input -> choice A -> (no way to reach other controls). This is be

Re: Language only locale's

2013-09-20 Thread Paul Hastings
I suspect en_US vs en_everybody else will cause some grief w/date formats.

Re: FocusManager issue with sparse focus groups

2013-09-20 Thread Cosma Colanicchia
Absolutely, but if there are other controls "interleaved" with the radio buttons of the same group, when the focus leave this interleaved components the focus is "moved back" to the selected button... even if this is "before" in the computed tab loop, actually creating a closed tab loop that is imp

Re: FocusManager issue with sparse focus groups

2013-09-20 Thread Alex Harui
The default behavior on Windows is/was that you tab to a group of radio buttons which will focus the selected one or the first one if none are selected, then use arrow keys to move between them. Another tab moves you to the next/previous control or group. The Flex FocusManager attempts to replica

FocusManager issue with sparse focus groups

2013-09-20 Thread Cosma Colanicchia
Hi list, maybe I found an issue with keyobard focus manager. I have a situation like this (hope you get the pic): [previous controls] [radio A] [radio B] [radio A1] [radio B1] [text input] [radio A2] [radio B2] [next

Re: [jira] [Commented] (FLEX-32848) AdvancedDataGrid doesn't respect style property 'textSelectedColor' for selectionMode='singleCell'

2013-09-20 Thread Erik de Bruin
Done. Now what? EdB On Fri, Sep 20, 2013 at 1:45 PM, Stephan Plath (JIRA) wrote: > > [ > https://issues.apache.org/jira/browse/FLEX-32848?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13772950#comment-13772950 > ] > > Stephan Plath commented on FL

RE: AdvancedDatGrid sorting oddity

2013-09-20 Thread Kessler CTR Mark J
The first reference [1] never made much sense to me. It sounds like it's allow the headerInfo.internalLabelFunction to override the sorting ability which is just weird. Especially since the sort.fields array holds all the sortfields. Label functions != sort compare functions. [1] var headerI