Re: [FlexJS]Layout redux

2017-02-24 Thread Alex Harui
On 2/24/17, 10:37 PM, "Yishay Weiss" wrote: >One more thing to consider is how effects will fit in here. I can imagine >scenarios where items inside of a container need to have an effect >applied to them. Currently, the move effect relies on changing x, y >values, which

RE: [FlexJS]Layout redux

2017-02-24 Thread Yishay Weiss
One more thing to consider is how effects will fit in here. I can imagine scenarios where items inside of a container need to have an effect applied to them. Currently, the move effect relies on changing x, y values, which implies absolute positioning. If they’re all part of a flexbox I’m not

Re: [FlexJS]Layout redux

2017-02-24 Thread Alex Harui
On 2/24/17, 11:42 AM, "Peter Ent" wrote: >Hi, > >I've pushed an update to the HorizontalFlexLayout and VerticalFlexLayout >that adds code for the SWF side. In general, the SWF and JS sides look the >same. There are some differences which I'm working on, but these should be

Re: [MDL Dialogs] was: Re: [FlexJS] MDL - Dynamic Child Problem

2017-02-24 Thread Alex Harui
On 2/24/17, 3:00 AM, "Harbs" wrote: >Having two discussions in one thread is confusing… ;-) > >I guess we could make a custom object, but I’m not sure what the point >is. AIUI, the purpose of IPopUpHost is to support many levels of popups. >Assuming we are right that

Re: [FlexJS]Layout redux

2017-02-24 Thread Peter Ent
Hi, I've pushed an update to the HorizontalFlexLayout and VerticalFlexLayout that adds code for the SWF side. In general, the SWF and JS sides look the same. There are some differences which I'm working on, but these should be usable. In doing this I've uncovered some incomplete work and/or

Re: Loading external API in flex application

2017-02-24 Thread Harbs
Your code literally loads “url” as a string. That’s probably not what you want to do… ;-) > On Feb 24, 2017, at 3:47 PM, Pawan Yadav wrote: > > Hi -- > > I am trying to load an external api in flex application > loader.load(new URLRequest("url")); > > and getting this

Re: Loading external API in flex application

2017-02-24 Thread OK
Pawan Yadav wrote > Hi -- > I am trying to load an external api in flex application > loader.load(new URLRequest("url")); > > and getting this error > > player error: Error #2035: URL Not Found. URL: > > Any idea, what could be wrong A complete code example would be helpful. Maybe this helps

Loading external API in flex application

2017-02-24 Thread Pawan Yadav
Hi -- I am trying to load an external api in flex application loader.load(new URLRequest("url")); and getting this error player error: Error #2035: URL Not Found. URL: Any idea, what could be wrong ᐧ

Re: [FlexJS] Horizontal list missing scrollbar

2017-02-24 Thread Harbs
These seem relevant: http://stackoverflow.com/questions/19212188/avoid-line-break-between-html-elements http://stackoverflow.com/questions/5078239/how-to-remove-the-space-between-inline-block-elements The takeaway seems to be that unless it’s set to no-break, HTML will always break between

Re: [FlexJS] Horizontal list missing scrollbar

2017-02-24 Thread Harbs
I’m not sure, but I think HTML treats separate elements as if there’s whitespace between. Worth looking into… > On Feb 24, 2017, at 9:41 AM, Alex Harui wrote: > > FWIW, I've been wondering: Does anybody know why there is whitespace when > we call appendChild() on these

Re: [FlexJS] Horizontal list missing scrollbar

2017-02-24 Thread Harbs
I just tried and it worked. I just committed the change. I use ant. I have a script which copies changes from dev to my nightly sdk using rsync. I run it every time I rebuild any part of the source. This lets me build individual projects, the whole asjs, or everything including falcon (ant

[FlexJS][SpriteFlexJS][Maven] Trying to write some example with FlexJS and SpriteFlexJS

2017-02-24 Thread Carlos Rovira
Hi, I created a test project with FlexJS and SpriteFlexJS. I use MDL for structure the example equally as I did before with MDLExample. It's here: https://github.com/carlosrovira/sprite-flexjs-examples So, the first thing I'm trying is this example by Lizhi:

[MDL Dialogs] was: Re: [FlexJS] MDL - Dynamic Child Problem

2017-02-24 Thread Harbs
Having two discussions in one thread is confusing… ;-) I guess we could make a custom object, but I’m not sure what the point is. AIUI, the purpose of IPopUpHost is to support many levels of popups. Assuming we are right that dialog must be attached to , the simplest way to handle that is to