Re: Profiling

2019-02-11 Thread Alex Harui
Re-adding users@ IIRC, the key piece is a loop in ViewStack’s setActualCreationPolicies (around line 1058) https://github.com/apache/flex-sdk/blob/master/frameworks/projects/mx/src/mx/containers/ViewStack.as It calls each child’s createDeferredContent(). The trick is to figure out when to

Re: Profiling

2019-02-11 Thread Alex Harui
Re-adding users@ Please figure out why the ML keeps getting dropped. I forgot you are using 3.x From: Paul Stearns Reply-To: "pa...@compuace.com" Date: Monday, February 11, 2019 at 6:56 PM To: Alex Harui Subject: Re: Profiling Alex: I had tried that, but INavigatorContent is not found. I

Re: Profiling

2019-02-11 Thread Alex Harui
If you have a TabNavigator in a variable/id "tn", Then you should be able to write: var containerChild:INavigatorContent = tn.getChildAt(i) as INavigatorContent; containerChild.createDeferredContent(); HTH, -Alex On 2/11/19, 4:37 PM, "Paul Stearns" wrote: Alex: I am not sure

Re: Profiling

2019-02-11 Thread Paul Stearns
Alex: I am not sure how I can use the link you referenced. I thought perhaps I could use "containerChild.createDeferredContent " but I am unable to find any components it is applicable to. From: Alex Harui Sent: 2/11/19 4:07 PM To: "pa...@compuace.com"

Re: Profiling

2019-02-11 Thread Paul Stearns
Alex: Is there an analogous section of code for 3.5 I can go look at? If so where can I find it? From: Alex Harui Sent: 2/11/19 10:05 PM To: "pa...@compuace.com" , "users@flex.apache.org" Subject: Re: Profiling Re-adding users@ Please figure out why

How to Copy with cntl+c and paste with ctrl+v in AIR ?

2019-02-11 Thread Yash Yadav
How to Copy with cntl+c and paste with ctrl+v in AIR ? Currently ctrl+insert and shift+insert are used in AIR for copy and paste. I want to use ctrl+c and ctrl+v... Is there any way to do this ? -- Sent from: http://apache-flex-users.246.n4.nabble.com/

Re: Profiling

2019-02-11 Thread Alex Harui
I pasted it, but too far down so you may have missed it: Try: var containerChild:Container = tn.getChildAt(i) as Container; containerChild.createComponentsFromDescriptors(); HTH, -Alex On 2/11/19, 7:38 PM, "Paul Stearns" wrote: Alex: Is there an analogous section of

Increase Maximum concurrent request in AIR

2019-02-11 Thread Yash Yadav
Hi All, We have implemented domain sharding so that multiple request can be hit at same service at once. We created 6 domain such as a.domain.com, b.domain.com...f.domain.com. When try and make multiple concurrent calls only 4 calls get through and remaining calls waits for response of any one