RE: Horizontal Layout - Actionscript

2021-03-10 Thread Maria Jose Esteve
Perfect!!! 😝 Hiedra -Mensaje original- De: Bilbosax Enviado el: lunes, 8 de marzo de 2021 14:14 Para: users@royale.apache.org Asunto: RE: Horizontal Layout - Actionscript Hiedra, I just wanted to give you a quick update. I used HorizontalLayout as you suggested and it is

RE: Horizontal Layout - Actionscript

2021-03-08 Thread Bilbosax
Hiedra, I just wanted to give you a quick update. I used HorizontalLayout as you suggested and it is working beautifully. I just change the Flex-wrap style to wrap or nowrap depending on if I need a horizontal layout or a tile layout. I get no split white/grey background problems that scroll with m

RE: Horizontal Layout - Actionscript

2021-03-02 Thread Maria Jose Esteve
zo de 2021 2:55 Para: users@royale.apache.org Asunto: RE: Horizontal Layout - Actionscript These are all very creative solutions, and if it becomes necessary, I will definitely use one. I've got a couple of weeks until I will need this to go into production and I'm hoping a solution will

RE: Horizontal Layout - Actionscript

2021-03-02 Thread Bilbosax
These are all very creative solutions, and if it becomes necessary, I will definitely use one. I've got a couple of weeks until I will need this to go into production and I'm hoping a solution will arise before then. With the background, I actually NEED it all to be white like the list. My app b

RE: Horizontal Layout - Actionscript

2021-03-02 Thread Maria Jose Esteve
haring Hiedra -Mensaje original- De: Bilbosax Enviado el: martes, 2 de marzo de 2021 20:43 Para: users@royale.apache.org Asunto: RE: Horizontal Layout - Actionscript Thanks for the feedback hiedra. When I choose a simple layout like your example, the only problem I run into is t

RE: Horizontal Layout - Actionscript

2021-03-02 Thread Bilbosax
Thanks for the feedback hiedra. When I choose a simple layout like your example, the only problem I run into is the background scrolling along with the content. But I think the problem is bigger. I have a background issue with both the TileHorizontalLayout and the HorizontalLayout for a list as

RE: Horizontal Layout - Actionscript

2021-03-02 Thread Maria Jose Esteve
; xmlns:html="library://ns.apache.org/royale/html" style="padding: 0px;"> ... Hiedra -Mensaje original- De: Bilbosax Enviado el: martes, 2 de marzo de 2021 14:48 Para: users@royale.apache.org Asunto: RE: Horizon

RE: [EXTERNAL] Re: Horizontal Layout - Actionscript

2021-03-02 Thread Brian Raymes
: Horizontal Layout - Actionscript Hi Bill, I built this blog example here: https://royale.apache.org/using-jewel-tilehorizontallayout/ And I'm seeing the tile layout is not initializing as it worked some months ago, so I think there's a regression on it. I need to investigate what&

Re: Horizontal Layout - Actionscript

2021-03-02 Thread Carlos Rovira
Hi Bill, I built this blog example here: https://royale.apache.org/using-jewel-tilehorizontallayout/ And I'm seeing the tile layout is not initializing as it worked some months ago, so I think there's a regression on it. I need to investigate what's going on El mar, 2 mar 2021 a las 14:48, Bil

RE: Horizontal Layout - Actionscript

2021-03-02 Thread Bilbosax
Yes, essentially. If that is a List component with a tile layout, then that is what I need. If it is a just a container with objects in it, then that won't work. -- Sent from: http://apache-royale-users.20374.n8.nabble.com/

RE: Horizontal Layout - Actionscript

2021-03-02 Thread Maria Jose Esteve
Bilbosax, This is what you need? https://drive.google.com/file/d/1oNDPROvJ8wOqW-P-FBpMZHv0E3Qu1jXT/view?usp=sharing Hiedra -Mensaje original- De: Bilbosax Enviado el: lunes, 1 de marzo de 2021 20:45 Para: users@royale.apache.org Asunto: Re: Horizontal Layout - Actionscript Yes, I

Re: Horizontal Layout - Actionscript

2021-03-01 Thread Bilbosax
Yes, I did. I have this in my app: If I add it directly to the list, I do indeed get scrollbars as desired, but there are two problems. The first is that in both TileHorizontalLayout and HorizontalLayout, the background of the List component is white, but as you are scrolli

Re: Horizontal Layout - Actionscript

2021-03-01 Thread Carlos Rovira
Hi Bilbo, about this, we need to go in chunks to manage all things. First, about scrollbars, did you try to add this to your group or container? El sáb, 27 feb 2021 a las 23:48, Bilbosax () escribió: > The second part of the bug report has two issues. The first is simple. A > List with

Re: Horizontal Layout - Actionscript

2021-02-27 Thread Bilbosax
The second part of the bug report has two issues. The first is simple. A List with a Jewel HorizontalLayout or a Jewel TileHorizontalLayout has no scrollbars. My users will not be able to scroll to see all of the content: HorizontalLayout - no Scrollbars in the List

Re: Horizontal Layout - Actionscript

2021-02-27 Thread Bilbosax
So I have uncovered some bugs that you may want to squash in the TileHorizontalLayout. I decided to go with the jewel layouts as you suggested, but I have uncovered several problems that I think need to be addressed. Due to the two separate problems, I am going to spread it over two posts in this

Re: Horizontal Layout - Actionscript

2021-02-27 Thread Carlos Rovira
Hi Bill, about browser orientation, you have a bead in Basic: BrowserOrientation - if orientation is portratit it dispatches: 'orientationPortrait' - if orientation is landspace it dispatches: 'orientationLandscape' It's exemplified in TDJ's MainContent.mxml Regarding mixing layouts from Basic an

Re: Horizontal Layout - Actionscript

2021-02-26 Thread Bilbosax
Getting closer Carlos, but still struggling. The only TileLayout that looks good and behaves how I need is the Basic TileLayout. I am changing the layout of an image gallery based on whether the browser is wider than it's height. If it is in a landscape mode, I want the layout to use a Basic Tile

Re: Horizontal Layout - Actionscript

2021-02-26 Thread Carlos Rovira
Hi Bill, first, there's no TileLayout in Jewel. There's "TileHorizontalLayout" and " TileVerticalLayout", and the second has some little flaws due to browser bugs depending on the browser and version used. So better to use the first when possible. second not always is needed to remove the old lay

Re: Horizontal Layout - Actionscript

2021-02-25 Thread Bilbosax
I'm having trouble changing the layout of a list using actionscript on the fly. For instance, if I want to change the layout from a horizontal layout to a tile layout in actionscript, this is not working: var hl:HorizontalLayout = new HorizontalLayout(); imageList.removeBead(hl); var tile:TileLa

Re: Horizontal Layout - Actionscript

2021-02-25 Thread Carlos Rovira
Bill, I think you want to do in AS3. that will be: var hl:HorizontalLayout = new HorizontalLayout(); list.addBead(hl); HTH El jue, 25 feb 2021 a las 20:36, Carlos Rovira () escribió: > Hi Bill, > > here's an example from TDJ: > > > > > > > > > > El jue, 25 feb 2021 a las 1:44, Bilbo

Re: Horizontal Layout - Actionscript

2021-02-25 Thread Carlos Rovira
Hi Bill, here's an example from TDJ: El jue, 25 feb 2021 a las 1:44, Bilbosax () escribió: > How do you set the layout for a list in actionscript? Specifically, how do > you set a List to a horizontal layout?? > > > > -- > Sent from: http://apache-royale-users.20374.n8.nabble.com/ > -

Horizontal Layout - Actionscript

2021-02-24 Thread Bilbosax
How do you set the layout for a list in actionscript? Specifically, how do you set a List to a horizontal layout?? -- Sent from: http://apache-royale-users.20374.n8.nabble.com/