Re: Type Selector Approximation (was Re: [DISCUSS] Explanation of the changes)

2018-05-19 Thread Peter Ent
I know I am late to this very, very long discussion, but after wading through (and even skipping over some of the more “complex” emails), I think this is become overly complicated. My understanding has been that RadioButton (for example) in basic.css would provide the beads while .RadioButton

Re: Container change

2018-05-07 Thread Peter Ent
I agree, to some extent, with Alex on this. One of the reasons I played around with the Simple project was that I thought Core was pretty much good as-is. I thought IUIBase needed some more stuff, but Core is pretty universal. As such, I was able to build a new framework on top of it (with the

New email

2018-05-04 Thread Peter Ent
Hi, I've got a lot on my mind today (last day with Adobe) and I'm transferring my Apache stuff to my personal accounts. I was wondering if someone could point me in the right direction. I went to the Apache LDAP and changed my forwarding email address. After a bit I sent an email from a

Re: Newest little Harbs (was Re: Null pointer errors)

2018-05-02 Thread Peter Ent
Congratulations! I hope all are doing well. ‹peter On 5/2/18, 9:35 AM, "Harbs" wrote: >Well, how about a baby sister? ;-) > >We just had a baby girl about a half hour ago. :-) > >(I¹ll post a picture as soon as I take one.) > >Harbs > >> On May 1, 2018, at 11:33 PM, Alex

Re: Welcome Alina Kazi as Apache Royale Committer

2018-04-26 Thread Peter Ent
Hi Alina, Welcome to the Apache Royale team. Have fun building MX Royale components and making Royale a hit! ‹peter On 4/26/18, 1:13 PM, "carlos.rov...@gmail.com on behalf of Carlos Rovira" wrote: >Hi Alina, > >Welcome to the team!

Re: Royale Simple(jsonly) and More

2018-04-25 Thread Peter Ent
Hi, I have renamed the repository to "royale-simple-jsonly" and changed the ActionScript project name to Simple and the package name to "simple" as well. https://github.com/pentapache/royale-simple-jsonly/wiki Enjoy! —peter On 4/24/18, 11:07 AM, "Peter Ent" <p

Re: Royale Foundation and More

2018-04-24 Thread Peter Ent
x Harui <aha...@adobe.com.invalid>: > >> IMO, "simple" is too subjective. IMO, the name should indicate the key >> differentiators. So "no-swf" might be part of the name. >> >> My 2 cents, >> -Alex >> >> On 4/23/18, 11:59 AM,

Re: Royale Foundation and More

2018-04-23 Thread Peter Ent
like some daughter/sibling organization of Apache >Software Foundation. > >I.e. I understand that "Foundation" here is similar to that of Microsoft >Foundation Classes, but due to ASF's name, I think it is unfortunate if >this name persist. > >My 2 cent >Niclas > >On Mon,

Re: About Peter's Royale Foundation

2018-04-23 Thread Peter Ent
Thanks for this analysis, Carlos! I'll address just a couple of things: First, can you not see the code because of some issue with Github (did I forget to make it public) or is it just because you are too busy? Secondly - view beads. I love the idea of separating them and I found it frustrating

Royale Foundation and More

2018-04-22 Thread Peter Ent
ld the examples. [1] Apache Royale Foundation Repo: https://github.com/pentapache/royale-foundation [2] Apache Royale Foundation Wiki (in the Repo): https://github.com/pentapache/royale-foundation/wiki Regards, Peter Ent

Re: ItemRenderer is not PAYG

2018-04-18 Thread Peter Ent
ons, one >for track and one for thumb), but again our ISliderView interface is not >right anymore since in JS we don't need "track" >and "thumb" since input range does not has that parts, although in CSS >there's something similar > >Thanks, for looking the vir

Re: ItemRenderer is not PAYG

2018-04-16 Thread Peter Ent
sues%2F177=02%7C01%7Cpent%40adobe.com%7 >C67df4df73179488905ab08d5a3afd574%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7 >C0%7C636594897951239437=vEgd35Vs%2B6DW%2BtWsYk0U9cQOCmJwGuYGnRvgPcqJ >frY%3D=0> > > > >2018-04-16 15:52 GMT+02:00 Peter Ent <p...@adobe.com.invalid>: >

Re: ItemRenderer is not PAYG

2018-04-16 Thread Peter Ent
There's been a huge amount of email surrounding Jewel - which is terrific. I haven't been able to digest all of it, but one question I have is, how much did you need to write to support SWF vs HTML/JS? Is that is in the framework (eg, Core, Basic) sufficient to support Jewel? ‹peter On 4/16/18,

Re: Layouts and its properties to be set via CSS

2018-03-30 Thread Peter Ent
Gap manages the space between elements while margin will apply to the space around every element. So margin:10px will add a 10 pixel space to the left of the first element and after it, but also before and after the second element, giving you a gap of 20 between the elements and an edge of 10.

Re: Layouts and its properties to be set via CSS

2018-03-30 Thread Peter Ent
"IBeadLayout" and friends are not real CSS style properties which means we can have our own properties. The HorizontalLayoutWithPaddingAndGap should try to use ValuesManager and get its gap and padding values from the style(s) associated with the strand component. SomeComponent { IBeadLayout:

Re: typeNames in View

2018-03-28 Thread Peter Ent
The differences exist mainly because of the Player and its lack of native support for scrolling. I created these classes as a building block and I tried to keep it as PAYG as possible. If you do not really want to use the Player, then just use Group. When you need scrolling, add to that specific

Re: Layout optimizations

2018-03-27 Thread Peter Ent
Here's an idea: Let's say MXML and the Royale Framework in general, generated a simple DOM based on the component types. In other words, an MXML file translates into the DOM structure: div, span, button, input, etc. Royale also provides the event glue so that you can connect events sent from

Re: TitleBarView

2018-03-27 Thread Peter Ent
I think Alex wrote TitleBarView as an MXML file to show that it could be done; more as an example perhaps. ‹peter On 3/27/18, 6:41 AM, "Harbs" wrote: >TitleBarview is an MXML file instead of an .as file. Is there a reason >for that? > >I¹m pretty sure that mxml has added

Re: Layout optimizations

2018-03-23 Thread Peter Ent
The code looks familiar, but I'm not 100% sure. The trick with layouts is that there are the following things to consider: If everything has an explicit width/height, it should be pretty easy. The percentWidth/height when present changes the _width, _height without changing the explicit size.

Re: Label

2018-03-15 Thread Peter Ent
It seems to me that simply using div instead of span would make >>Label >> more versatile. Am I missing something? >> >> > On Mar 15, 2018, at 2:30 PM, Peter Ent <p...@adobe.com.INVALID> wrote: >> > >> > Label was one of the very first co

Re: Flex Emulation SWCs

2018-03-01 Thread Peter Ent
My plan is to work through each major component and fill in gaps. For example, with mx.controls.Button, we can emulate that with TextButton as the base and add in the few missing pieces (eg, useHandCursor). We should also create and use tests so that there's a uniform approach to building these

Re: TypeNames vs ClassName

2018-02-23 Thread Peter Ent
I have been guilty of this and have been using typeNames now. I've found that I need to set typeNames before calling super() in the constructor. I thought it was done afterwards, but if I set typeNames after calling super(), the typeName I set does not show up in the HTML produced. Also, suppose

Re: [Royale] DividedBox

2018-02-14 Thread Peter Ent
into develop sometime tomorrow, hopefully. —peter On 2/14/18, 9:10 AM, "Peter Ent" <p...@adobe.com.INVALID> wrote: >I used position:absolute on everything since pixel-level control was >required for resizing. The only real difference between the SWF code and >the JS cod

Re: [Royale] DividedBox

2018-02-14 Thread Peter Ent
ng to look into for the future. ‹peter On 2/14/18, 8:59 AM, "Piotr Zarzycki" <piotrzarzyck...@gmail.com> wrote: >Hi Peter, > >How did you build rows/columns in HTML ? > >Thanks, >Piotr > >2018-02-14 14:56 GMT+01:00 Peter Ent <p...@adobe.com.invalid>: > &

[Royale] DividedBox

2018-02-14 Thread Peter Ent
children into rows. The children are separated with dividers containing grippers. You can drag the dividers to resize the children on either side. Regards, Peter Ent Adobe Systems/Apache Royale Project

Re: What is x and y? What is width and height?

2018-02-07 Thread Peter Ent
I think I agree with Harbs about x,y,width,height just returning the set values if the calculation would be expensive. I wonder what the circumstances are that we actually need to have precise values in calculations. For example, if I wanted to make a circulate layout, how would I go about doing

Re: DropDownList with ArrayList

2018-01-26 Thread Peter Ent
In PAYG fashion we/you would need to create a new set of beads that work with ICollectionView rather than generalizing. ‹peter On 1/25/18, 5:36 PM, "Gabe Harbs" wrote: >Yeah. Maybe. In my case, I just used Array instead of ArrayList, but that >shouldn¹t really be

Re: [Royale] ICollectionView

2018-01-22 Thread Peter Ent
Can you provide an MXML sample that reproduces the problem? I am also going to try to figure out what conditions would cause this to happen. Thank you for your patience. ‹peter On 1/22/18, 4:57 AM, "piotrz" wrote: >Peter I decided show you some screenshots. This is dg and

Re: [Royale] ICollectionView

2018-01-21 Thread Peter Ent
t; I do like that code landed in layout bead. > > Thoughts ? > > Thanks, Piotr > > > 2018-01-20 14:45 GMT+01:00 Peter Ent <p...@adobe.com.invalid>: > >> Hi, >> >> My main reason for moving the layout code to layout beads with more >> contro

Re: [Royale] ICollectionView

2018-01-20 Thread Peter Ent
al issues. > >Flex box layouts just works, really good. Our flex box layout is doing >also >something with the children if remember correctly? >I know that there is possible to do not set anything to children and >achieve what we currently have in those layouts. > >On Fri, Jan 19,

Re: [Royale] ICollectionView

2018-01-19 Thread Peter Ent
at the latest. Regards, Peter On 1/19/18, 1:47 PM, "Peter Ent" <p...@adobe.com.INVALID> wrote: >Hi Piotr, > >I was having an issue with the appearance of Scrollbars (in FlashPlayer, >not HTML) in DataGrid. I finally tracked it down to the >HorizontalFlexLayout that is

Re: [Royale] ICollectionView

2018-01-19 Thread Peter Ent
Hi Piotr, I was having an issue with the appearance of Scrollbars (in FlashPlayer, not HTML) in DataGrid. I finally tracked it down to the HorizontalFlexLayout that is used for the Container holding the columns. When I switch it to HorizontalLayout the scrollbars appear. It looks like

Re: [Royale] DataGrid default configuration proposal

2018-01-19 Thread Peter Ent
gt;> Wonderful! >> >> I will refresh also my private examples to check how things work. >> >> Thank you so much! >> Piotr >> >> >> 2018-01-18 22:35 GMT+01:00 Peter Ent <p...@adobe.com.invalid>: >> >>> Hi, >>> >>&g

Re: [Royale] DataGrid default configuration proposal

2018-01-18 Thread Peter Ent
w to have it working. I can of course copy everything what is inside >DynamicDataGrid style and add my things, but this is not the solution. > >Thanks! > >2018-01-17 22:10 GMT+01:00 Peter Ent <p...@adobe.com.invalid>: > >> I'm not sure; it is a good question. I will have

Re: [Royale] DataGrid default configuration proposal

2018-01-17 Thread Peter Ent
If you are going to create a style definition of DynamicDataGrid should >> also create a DynamicDataGrid class that packs in the required set of >> beads. >> >> The DataGrid in Express will likely evolve to pack a set of beads that >> don't care if the data provider is an

[Royale] DataGrid default configuration proposal

2018-01-17 Thread Peter Ent
Hi, I'm proposing a change to DataGrid default configuration. Right now DataGrid is designed to work with ArrayList; its does not work with Array. I propose that the default configuration for DataGrid is to use Array as its dataProvider and provide no dynamic abilities. We would include in

Re: [Royale] ICollectionView

2018-01-16 Thread Peter Ent
Now that I've checked in TreeGrid and my changes to DataGrid (not much) I can look into this with you. I created an interface, IDataGridColumn so that TreeGrid and DataGrid can share a lot of the same code, although the two are separate at the moment. I want TreeGrid to be able to use most of the

[Royale] TreeGrid

2018-01-16 Thread Peter Ent
can make any column be the Tree. You can even have multiple columns be trees, although I'm not sure if that makes any sense. There is still some more work and styling to be done. Regards, Peter Ent Adobe Systems/Apache Royale project

Re: [Royale] ICollectionView

2018-01-16 Thread Peter Ent
Sorry for the delay; yesterday was a company holiday here in the States. I was catching up on other things. I figured this would come up; we need to have a plan for style names that is consistent. What we have now isn't working right all the time. I was trying to give the columns additional class

Re: Slider Component

2018-01-10 Thread Peter Ent
I compared Justin's suggested change with what was already in the repo and changed the code to remove an unnecessary offset. To me, it now works correctly. ‹peter On 1/9/18, 7:14 PM, "Justin Mclean" wrote: >Hi, > >> I've tried the slider with Safari, Chrome, and

Re: Slider Component

2018-01-09 Thread Peter Ent
just aren't being processed fast enough. This may be as best as we can get it. —peter On 1/9/18, 2:47 PM, "Peter Ent" <p...@adobe.com> wrote: >Thanks for the video! That was great. I do see what you are describing. >I'll look into it. > >—peter > >On 1/9/18,

Re: Slider Component

2018-01-09 Thread Peter Ent
ck again thumb moves (two times to >the right and the goes again to origin), this is the one Justin reported >* Another one is when you click on thumb and then drag, the slider goes >directly to match mouse pointer position > >Thanks > >2018-01-09 17:32 GMT+01:00 Peter Ent <p.

Re: [VOTE] Release Apache Royale 0.9.0 RC1

2018-01-09 Thread Peter Ent
+1 Binding Used Approval script (used playerglobal 11.1 swc) I didn't see any problems that would withhold this from release. ‹peter On 1/9/18, 11:25 AM, "yishayw" wrote: >+1 >Package >https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdist.apac

Re: [DISCUSS] Discuss Release Apache Royale 0.9.0 RC1

2018-01-09 Thread Peter Ent
Yes, I can get 11.1, but 27.0 is in the apache-royale-0.9.0 IDE-compatable directory that got built with the installer script. It must have downloaded the latest playerglobal.swc at that time. Seems natural to use that rather than 11.1. ‹peter On 1/9/18, 11:30 AM, "yishayw"

Re: Slider Component

2018-01-09 Thread Peter Ent
I've tried the slider with Safari, Chrome, and Firefox. I guess I am not understanding the problem. When I move the mouse into the slider thumb control, press the mouse button down and drag, the thumb follows the mouse immediately. It may snap to step positions along the track if the range isn't

Re: [VOTE] Release Apache Royale 0.9.0 RC1

2018-01-09 Thread Peter Ent
-1 Binding I ran the ApproveRoyale.xml script. The build failed for me here: tests: [mkdir] Created dir: /Users/pent/temp/apache-royale-0.9.0-src/royale-compiler/compiler/target/ju nit-reports [mkdir] Created dir:

Re: [Royale] ICollectionView

2018-01-08 Thread Peter Ent
. But if you do use these new beads you can just insert or remove an item and the columns in the DataGrid will reflect the changes. The DataGrid should also remain selected unless you are removing the selected row. —peter On 1/7/18, 7:17 PM, "Peter Ent" <p...@adobe.com.INVALID> wrote:

Re: [Understanding PAYG] Button: Why is there no "text" or "icon" bead in order to compose a TextButton or IconButton?

2018-01-08 Thread Peter Ent
Keep in mind that a Royale Button's base UI element is platform dependent. On the HTML side, the element is a and there is no view bead to construct it. TextButtonView is a Flash platform class that makes the actual UI button with its up/down/over states represented as separate basic elements.

Re: [Royale] ICollectionView

2018-01-07 Thread Peter Ent
hat do you think what we should do in > order to achieve that ? > > Thanks, Piotr > > > 2018-01-07 14:35 GMT+01:00 Piotr Zarzycki <piotrzarzyck...@gmail.com>: > >> Many Thanks! >> >> I just noticed that Grid doesn't have selectedItem pro

Re: [Royale] ICollectionView

2018-01-07 Thread Peter Ent
I did notice that something was happening with the scrollbars. I will look into it. ‹peter On 1/6/18, 8:52 AM, "piotrz" wrote: >Hi Peter, > >Just wanted to let you know that I have started use more extensively >DataGrid and I have found that using FlexLayout gives a way

[Royale] ICollectionView

2018-01-05 Thread Peter Ent
next week. Regards, Peter Ent Adobe Systems/Apache Royale Project

Re: [Royale] Collection work

2018-01-03 Thread Peter Ent
ider, and it is up to selection >management to interpret itemAdded/itemRemoved to some selection change. >It is that selection management code that needs to dispatch a "changing" >before "change" or "selectionChanging" before "selectionChange". &

Re: [Royale] Collection work

2018-01-03 Thread Peter Ent
e. On 1/3/18, 12:26 PM, "Piotr Zarzycki" <piotrzarzyck...@gmail.com> wrote: >Hi Peter, > >What about DataProviderItemsChangeNotifier - It exactly doing what you are >saying and what that restoration bead needs. What do you think ? > >Thanks, Piotr > >

Re: [Royale] Collection work

2018-01-03 Thread Peter Ent
t;You didn't misread, but my thoughts probably didn't far away into problem >>resolution. That's why I was surprise why I haven't thought about >>preserving selection. :) >> >>Thanks, Piotr >> >> >>2018-01-02 22:10 GMT+01:00 Peter Ent <p...@adobe.co

Re: [Royale] Collection work

2018-01-02 Thread Peter Ent
>Hi Peter, > >Welcome after vacation! I sense all ideas when I'm working with that >stuff. >I think you will see the issue with indexes, even if it's not the case >with >removing from the list. I will wait for your review with that index >refresh. > >

Re: [Royale] Collection work

2018-01-02 Thread Peter Ent
Hi, Catching up and building stuff. I'm going to repeat some things for the befit of anyone joining Royale for 2018 (and to refresh my own thoughts coming off of holiday!). The initial idea of List and related classes was their beads were to be almost static. You'd have data that you would use

Re: [Royale] Collection work

2017-12-19 Thread Peter Ent
;It looks pretty exciting! This new stuff may help with some sorting. Push >the branch and maybe I will look if not I will definitely do this in the >new year. > >Thank you and wish you all the best! >Piotr > > > >2017-12-18 23:24 GMT+01:00 Peter Ent <p...@ado

[Royale] Collection work

2017-12-18 Thread Peter Ent
using SingleSelectionCollectionModel and DataItemRendererFactoryForCollectionView. The Tree works as does DataGrid. I'm in the middle of getting TreeGrid to work with these new classes. Have a wonderful New Year. Regards, Peter Ent Adobe Systems/Apache Royale Project

Re: Dropdowns

2017-12-13 Thread Peter Ent
I have not tried this, but are there some kits, like jQuery, where you just use and then jQuery has a lot of CSS that enables the type of thing Harbs wants to do as far as user interaction goes? Then you'd just use a drop down list and style the heck out of it. In other words, CSS takes care of

Re: [Royale] DynamicItemsRendererFactoryForArrayListData

2017-12-13 Thread Peter Ent
ist should probably not do that and instead, dispatch a >single COLLECTION_CHANGED event once completed." > >Maybe we should go to that direction ? > >Thanks, Piotr > > >2017-12-11 19:29 GMT+01:00 Peter Ent <p...@adobe.com.invalid>: > >> I have a in my test. Its de

Re: Slider Component

2017-12-12 Thread Peter Ent
HTMLElementWrapper that is discarding the BrowserEvent and sending a native event instead. —peter On 12/12/17, 3:53 PM, "Peter Ent" <p...@adobe.com.INVALID> wrote: >Hi Carlos, > >I've pushed some changes to Slider. I created HorizontalSliderLayout to >size and position the com

[Royale] TreeGrid

2017-12-12 Thread Peter Ent
this: You can look at the TreeExample that comes with Royale for a working example. This is a first-pass at TreeGrid. Has its own beads: TreeGridView, TreeGridModel, and TreeGridLayout. Regards, Peter Ent Adobe Systems/Apache Royale Project

Re: Slider Component

2017-12-12 Thread Peter Ent
I just saw this email. I'll be happy to look at it. I think it was made early in FlexJS. I imagine it could be crude. I'm also sure it is horizontal. I'll keep vertical in mind - maybe it needs different layouts to handle that. ‹peter On 12/12/17, 5:00 AM, "carlos.rov...@gmail.com on behalf of

Re: [Royale] DynamicItemsRendererFactoryForArrayListData

2017-12-11 Thread Peter Ent
t sure >what >can happen if we have both beads added. > >However I do understand also other use cases. > >Thanks, Piotr > > >2017-12-11 17:16 GMT+01:00 Peter Ent <p...@adobe.com.invalid>: > >> I committed the change to the remove bead after running the MD

Re: [Royale] DynamicItemsRendererFactoryForArrayListData

2017-12-11 Thread Peter Ent
7m8=02%7C01%7Cpent%40adobe.com%7C835b99b029af47936d8508d54 >0ae2eda%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636486039218879495 >ata=cghdpJo101E1sgl%2FgG2VFahFno78Y8nwfiks7bbPdHE%3D=0 > >Thanks, Piotr > > >2017-12-11 16:29 GMT+01:00 Peter Ent <p...@adobe.com.invalid>: > >> In th

Re: Hackathon

2017-12-11 Thread Peter Ent
Hi, Thanks for the invite, but I do not think it will be possible for me to join you. Regards, Peter On 12/9/17, 1:30 PM, "Harbs" wrote: >The only flights I can take on Thursday are pretty early in the day. That >would only give us the morning, and I don¹t see that

Re: [Royale] DynamicItemsRendererFactoryForArrayListData

2017-12-11 Thread Peter Ent
In the PAYG world of Royale, we need to keep a number of features separate so apps are not weighed down by unused code. I originally had a bead that refreshed all item renderers by deleting them from the DataGroup and re-creating them. I also had a bead that just created itemRenderers on demand

Re: [Royale] DynamicItemsRendererFactoryForArrayListData

2017-12-09 Thread Peter Ent
even have ArraySelectionModel. App writers can extend these classes to make custom models or implement the interfaces from scratch. It would certainly help to have some uniformity. Peter > On Dec 9, 2017, at 3:09 PM, Peter Ent <p...@adobe.com.INVALID> wrote: > > Piotr,

Re: [Royale] DynamicItemsRendererFactoryForArrayListData

2017-12-09 Thread Peter Ent
Piotr, The model classes do not dispatch CollectionEvents - only ArrayList (or something like it) dispatches those events. So we cannot listen on the model. What I've done, however, is change things in DynamicŠ so that when the dataProvider does change (or is initially present), then a listener

Re: [Royale] DynamicItemsRendererFactoryForArrayListData

2017-12-09 Thread Peter Ent
Thanks for pointing that out. I’ll try to get to it over the weekend. I think there is an issue/concept we need to sort out: listen on Model vs dataProvider. Peter > On Dec 9, 2017, at 6:17 AM, Piotr Zarzycki wrote: > > Peter, > > That's when my initial

Re: [Royale] DynamicItemsRendererFactoryForArrayListData

2017-12-08 Thread Peter Ent
and related classes to handle adding an itemRenderer at a specific index. —peter On 12/7/17, 4:38 PM, "Piotr Zarzycki" <piotrzarzyck...@gmail.com> wrote: >Cool! Look forward to your commit! :) > >Thanks, Piotr > >2017-12-07 22:19 GMT+01:00 Peter Ent <p...@adobe.com.i

Re: [Royale] DynamicItemsRendererFactoryForArrayListData

2017-12-07 Thread Peter Ent
%3A%2F%2Fgithub.c >>om%2Fapache%2Froyale-asjs%2Ftree%2Fdevelop%2Fexamples%2Froyale%2F=02 >>%7C01%7Cpent%40adobe.com%7C7eae28a09fe34ab5601208d53db793e5%7Cfa7b1b5a7b3 >>4438794aed2c178decee1%7C0%7C0%7C636482781023742530=lCQYe8JT4hVyaM%2 >>FHWXW3Bo0S737W2Z0l8YiGYs26Kc4%3D=0 >>

[Royale] DynamicItemsRendererFactoryForArrayListData

2017-12-07 Thread Peter Ent
I'm trying to see if my new RemoveItemRendererBead works with DynamicItemsRendererFactoryForArrayListData and discovered that this class is listening to the model for the ITEM_ADDED event. The model doesn't dispatch the event - the dataProvider (ArrayList) dispatches the event. The model

Re: Names and Packages (was Re: MXMLDataInterpreter)

2017-12-07 Thread Peter Ent
I also wonder if List, DataGrid, Tree shouldn't be moved out of "basic" and into "advanced" - they along with their supporting beads. From the work I've been doing with handling "itemAdded" event vs "dataProviderChanged", it might be easier for customers who want the expense of a DataGrid to just

Re: Thoughts on ToggleButton

2017-12-07 Thread Peter Ent
I’ve felt that way on occasion too. What we did was create view beads for SWF and not JS in some cases because the createElement function was enough. Not sure what to do in these cases. Peter > On Dec 7, 2017, at 5:52 AM, Piotr Zarzycki wrote: > > Hi Harbs, > >

Re: List, MDL Table - How to remove all content

2017-12-06 Thread Peter Ent
e application writer supplied the model via a standard interface. —peter On 12/5/17, 3:51 PM, "Peter Ent" <p...@adobe.com.INVALID> wrote: >I'm working on three approached trying to decide which is a best fit. > >Using the DynamicItemsRendererFactoryForArrayListData and a

Re: SingleSelectionContainerBead (was Re: MXMLDataInterpreter)

2017-12-06 Thread Peter Ent
Ha. Just sent a reply on the other thread with pretty much the same thing that you did. Might be nice addition for Express. Just in-line the things you want to toggle. Would it work with a ToggleButton, a CheckBox, and a couple of RadioButtons or do all of the children have to be ToggleButtons?

Re: MXMLDataInterpreter

2017-12-06 Thread Peter Ent
Sometimes you really just want a set of buttons to act like a toggle button bar. There's nothing dynamic about them. Putting them into an container (I would recommend Group over Container since its much lighter in weight and you probably don't need the possibility of scrolling). The

Re: List, MDL Table - How to remove all content

2017-12-05 Thread Peter Ent
r all at >> once) and you get to choose. If you only have a few items in the list, >> you might want to call itemRemoved several times and attach some cool >> remove effect. >> >> My 2 cents, >> -Alex >> >> On 12/5/17, 8:15 AM, "Peter Ent" &l

Re: List, MDL Table - How to remove all content

2017-12-05 Thread Peter Ent
, 2017, 16:16 Piotr Zarzycki <piotrzarzyck...@gmail.com> >wrote: > >> Those two beads will handle remove/add, so will I be able to use it for >> list? >> >> It look like all your upcoming changes is something which I need for. >> >> I'm look forward to yo

Re: [Royale - ASJS] PAYG list beads

2017-12-01 Thread Peter Ent
for "dataProviderChanged" and do the wholesale replace that the factory bead does now. The factory beads will need to have a change in their interfaces to support having their own beads and to be able to delegate to them. —peter On 12/1/17, 9:59 AM, "Peter Ent" <p...@a

Re: [Royale - ASJS] PAYG list beads

2017-12-01 Thread Peter Ent
Thanks for the reminder, Justin. I had thought about the Decorator pattern; after all, beads really should be thought of as Decorators. When we add a password protection bead to the TextInput component, it does not change what the TextInput component is, it merely enhances it. The problem is

Re: FAQ page on website

2017-11-16 Thread Peter Ent
As a native (American) English speaker (and sadly, the only language I speak and often not that well sometimes), reading something written by a non-native speak is usually pretty easy and the meaning clear. I'd be more than happy to help with words or phrasing if someone wants guidance. We have a

Re: About Semantic UI and our UI Set + look-and-feel effort

2017-11-14 Thread Peter Ent
For things like lists and tables, we have our dataProviders and itemRenderer factories. Could probably be more streamlined to produce list and table elements for the itemRenderers. Being able to make a quick in-line list with some text and buttons ought to be easy and not require a dataProvider

Re: About Semantic UI and our UI Set + look-and-feel effort

2017-11-14 Thread Peter Ent
I did a quick look. Seems pretty cool and definitely useful. Plus it gives us direction. But please, please, please, figure out licensing before going a step further. This is what I found: https://semantic-ui.mit-license.org ‹peter On 11/14/17, 10:10 AM, "carlos.rov...@gmail.com on behalf of

Re: [royale-asjs] branch develop updated: PanelView no longer removes beads. Instead, it transfers beads from the Panel to its Container content area.

2017-11-09 Thread Peter Ent
0879ce4c1d712108d527a89e8e%7Cfa7b1b5a7b34438794aed2c17 >>8decee1%7C0%7C0%7C636458527527098248=DutGVMejNnl7H18IB%2BqhqlKOYlwU >>nG8sh2j%2BiKPPHhY%3D=0> >> >>> On Nov 9, 2017, at 6:39 PM, Peter Ent <p...@adobe.com.INVALID >>><mailto:p...@adobe.c

Re: [royale-asjs] branch develop updated: PanelView no longer removes beads. Instead, it transfers beads from the Panel to its Container content area.

2017-11-09 Thread Peter Ent
I saw that Container worked, but how do you get labels on them? —peter On 11/9/17, 9:54 AM, "Harbs" <harbs.li...@gmail.com> wrote: >Inside the js:Array should be Container elements. > >I’m using it in production. > >> On Nov 9, 2017, at 4:28 PM, Peter

Re: [royale-asjs] branch develop updated: PanelView no longer removes beads. Instead, it transfers beads from the Panel to its Container content area.

2017-11-09 Thread Peter Ent
moves beads. Instead, it >>transfers beads from the Panel to its Container content area. >> 3e77b0c is described below >> >> commit 3e77b0ce0a9e967fd229a2218cd277d593b58e69 >> Author: Peter Ent <p...@apache.org> >> AuthorDate: Wed Nov 8 13:00:20 2017 -0500 >

Re: [royale-asjs] branch develop updated: PanelView no longer removes beads. Instead, it transfers beads from the Panel to its Container content area.

2017-11-08 Thread Peter Ent
moves beads. Instead, it >>transfers beads from the Panel to its Container content area. >> 3e77b0c is described below >> >> commit 3e77b0ce0a9e967fd229a2218cd277d593b58e69 >> Author: Peter Ent <p...@apache.org> >> AuthorDate: Wed Nov 8 13:00:20 2017 -050

[Royale Wiki] User Manual

2017-11-08 Thread Peter Ent
I seem to be having trouble getting mail sent out. Apologies if this appears as a duplicate, but I didn't see this appear earlier. I just finished modifying the Panel component in Basic and deleted its use of removeBead() in favor of transferring beads from the outer Panel strand to the

Re: [Royale-ASJS] flexTasks

2017-11-08 Thread Peter Ent
more, but the past few days have taught me that >there are dark corners of the framework where it still lurks... > >EdB > > > >On Wed, Nov 8, 2017 at 3:58 PM, Peter Ent <p...@adobe.com.invalid> wrote: > >> I wasn't able to get the compiler to build complet

VSCode

2017-11-02 Thread Peter Ent
Hi, Since FlashBuilder refuses to run for me, I thought I'd take a step into 2017 and use VSCode. Seems quite nice and well designed. I need help getting this to work for Royale. Or does it not yet work for Royale? I'm not sure what to do. Here is what I have done so far: Installed VSCode

Re: Mobile vs Desktop diferences in components (Was: Re: Restarting contributions)

2017-11-02 Thread Peter Ent
(copied from another email thread; this one seems more appropriate). I created the Mobile kit. I did it separately because it was supposed to mimic how UINavigationController, UIViewController, and UITabController work on iOS (which I'm more familiar with than Android). But there is nothing

Re: package paths

2017-11-01 Thread Peter Ent
I'm glad you brought this up. I've been giving some thought to refactoring Royale into more logical components. We've done this before, but I think some refinement is in order before we could have a 1.0 release that would make sense to the general public. I think streaming and moving things around

Re: Event Metadata (was Re: [GitHub] ...: Image not removed when src set to null

2017-10-31 Thread Peter Ent
I typically use the strand as the central dispatcher for intra-bead communication. Sometimes an event from a bead conflicts with an event dispatched by the strand to the "outside". For example, if a bead were to need to send a "change" event and another bead was listening for that event, "change"

Re: Live PrintUI Demo

2017-10-26 Thread Peter Ent
I have to this is really impressive. Frankly, I'm surprised Royale can do this. I'm sure it was quite a bit of work. Congratulations and thank you for sharing this. ‹peter On 10/26/17, 4:28 AM, "Harbs" wrote: >FYI, We have a publicly available live demo of our Royale app

Re: Apache Royale 0.9 setup

2017-10-25 Thread Peter Ent
Hi, Yes - change all "flex" and "flexjs" to "royale". So the namespace will have "ns.apache.org/royale/basic". ‹peter On 10/25/17, 5:35 PM, "Idylog - Nicolas Granon" wrote: >Hi Alex, > >After downloading "apache.royale-jsonly-0.9.0-bin.zip" and unzipping, the >"root"

Re: [Royale|FlexJS] Questions about states

2017-10-23 Thread Peter Ent
I've been debating whether or not to send this, but given this discussion, I think it is appropriate. It is still unclear to me whether or not we code Royale with the priority on HTML/JS/CSS platform or SWF. Alex and I have talked about this and primarily the rule is: make it work for HTML/JS/CSS

Re: [Github] Denied Access

2017-10-20 Thread Peter Ent
a new github identity? Peter On Oct 20, 2017, at 11:29 AM, Peter Ent <p...@adobe.com.INVALID<mailto:p...@adobe.com.INVALID>> wrote: Thanks - but there has to more steps. I still cannot push changes. I have 2FA set up. I have my GitHub account name in my Apache LDAP profile. The gitbo

Re: [Github] Denied Access

2017-10-20 Thread Peter Ent
g%2Fsetup%2F=02%7C01%7C%7C4d94b5edb4b64e9ac35308d517c55654% >>7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636441058681308275=P6t >>NqnX5UQR8JcEbNiPAQd%2FwDbByqcm7HGbWAiDPLCM%3D=0> >> >>> On Oct 20, 2017, at 5:02 PM, Peter Ent <p...@adobe.com.INVALID >>>&l

  1   2   >