Re: PopUpManager

2018-02-06 Thread Alex Harui
This change https://github.com/apache/royale-asjs/commit/e17295637abe289bc2c4ab1fc9374985337edbca#diff-fa339d395e86b994f9dd2a831ac01130 Puts up a List. Other code takes it down. The List class can be any UI widget including an instance from a module. FWIW, I think we still want to do a Tour

Re: PopUpManager

2018-02-06 Thread Andrew Wetmore
> Just last night I made a change to the Royale ASDoc app to float a popup. In the main view file, all I had to do was call addElement(popUp). Can you provide a code snippet for that? In my Flex apps popup contents are usually in their own modules. Is that how you provide the contents of the

Re: PopUpManager

2018-02-06 Thread Alex Harui
So far, Royale/FlexJS hasn't required a PopUpManager. Most "popups" can just be parented by the main initial view. The Flex PopUpManager was overkill for most of that. It really only became useful to manage more than one non-modal popup on screen at one time, like a spell-check or find

Re: Porting to Apache Royale

2018-02-06 Thread Alex Harui
Sounds great! We are here to support you. -Alex From: Alina Kazi > Reply-To: "users@royale.apache.org" > Date: Tuesday, February 6, 2018 at 3:07 AM To:

Re: Canvas

2018-02-06 Thread Peter Ent
Hi, Thanks for looking into Apache Royale! As you know, mx:Canvas lets you place items using (x,y) positioning. You can do the same thing using either js:Group or js:Container with js:BasicLayout. js:Group is much lighter in weight then js:Container when running the app in the Flash Player; in

Porting to Apache Royale

2018-02-06 Thread Alina Kazi
Hi, We are going to port our existing Flex ERP System to Apache Royale. It contains different modules: -Sales -Purchase -Inventory -Accounts Payable -Accounts Receivable -Feasibility It is a huge system in terms of features and functionality. We have 7 major clients and almost 100

Re: Title Window

2018-02-06 Thread Piotr Zarzycki
Hi Aleena, I think this question belongs to the Royale list, so I'm adding it. I believe Panel and PanelWithControlBar can be equivalent to that. Thanks, Piotr 2018-02-06 10:44 GMT+01:00 Alina Kazi : > Hi, > > I am using s:TitleWindow and porting my app to Apache

Re: Canvas

2018-02-06 Thread Piotr Zarzycki
Hi Alina, I believe js:Group and js:Container is close to that container, but do not search to much similarities. js:Group -> is converted to Div in HTML. Maybe describe what you wanted to achieve. Thanks, Piotr 2018-02-06 10:46 GMT+01:00 Alina Kazi : > Hi, > > I am using