Re: [flexcoders] Chain webservices

2005-07-19 Thread Alex Cruikshank
Hi Rajesh, You can execute synchronous web service calls by making the second call from within the result handler of the first. I believe the above code should look something like this: import mx.utils.Delegate; public function createMarketRequest() { marketRequest = new MarketRequest(); var

Re: [flexcoders] Re: using a repeater with large data sets

2005-07-07 Thread Alex Cruikshank
Hi Andrew, If you're using remoting, I'd make sure your performance problems aren't with the serialization/deserialization of the results before you invest much time in optimizing the display. I've done some research into this

[flexcoders] Remoting peformance for large lists

2005-06-13 Thread Alex Cruikshank
Hi all, We're having some peformance problems on the client side when loading large lists of object graphs through our remoting inteface. I've written a simple test case to characterize the problem (the mxml file and remote object are attached), and I'm seeing some behavior I can't explain. I

Re: [flexcoders] Remoting peformance for large lists

2005-06-13 Thread Alex Cruikshank
://www.markme.com/mchotin/archives/cat_data_management.cfm down at the bottom. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Cruikshank Sent: Monday, June 13, 2005 3:15 PM To: flexcoders@yahoogroups.com Subject

[flexcoders] accessing registerClass() class bindings.

2005-04-12 Thread Alex Cruikshank
. Is there any way to either retrieve an AS2 class or instantiate a new instance of the appropriate class given the linkage name specified in a registerClass() function? Thanks for your help, Alex Cruikshank CarbonFive Yahoo! Groups Links To visit your group on the web, go to:http

Re: [flexcoders] Help Array

2005-03-17 Thread Alex Cruikshank
Hi can you help to correct this problem I don't know much about Binding, but can we watch a[0] kind of thing? Don't know :( The problem is that you're trying to use a databinding expression on an array element (vopf[0]). Flex can only bind to variables or get functions with defined changed

Move Effects in Resizable Containers

2005-03-16 Thread Alex Cruikshank
I'm trying to create a move effect for a component at an arbitrary point within a Canvas to a specific point in the middle of the canvas. When I know the exact size of the Canvas, this is easy: mx:Effect mx:Move xTo=300 yTo=0 duration=1000/ /mx:Effect When the Canvas is resizable, however,

Re: [flexcoders] Is System.security.loadPolicyFile() one shot onl y?

2005-03-05 Thread Alex Cruikshank
From: Alex Cruikshank [mailto:[EMAIL PROTECTED] Sent: Monday, February 28, 2005 3:56 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Is System.security.loadPolicyFile() one shot only? We are trying to get our flex application

Is System.security.loadPolicyFile() one shot only?

2005-02-28 Thread Alex Cruikshank
appreciate any insight or references you can provide. Thanks, Alex Cruikshank Carbon Five

Losing data bindings after seemingly unrelated event.

2005-02-15 Thread Alex Cruikshank
to selection.list automatically update this data binding expression (at least until you change the selection). I would greatly appreciate any insight that anyone can provide. Also, I would love to find an in-depth reference describing how data binding works in Flex/Flash. Thanks, Alex Cruikshank

Re: [flexcoders] Losing data bindings after seemingly unrelated e vent.

2005-02-15 Thread Alex Cruikshank
look at the generated-as files (see keep-generated-as in flex-config) but I warn you that you may be seeing a little too much sausage being made J Matt From: Alex Cruikshank [mailto:[EMAIL PROTECTED] Sent: Monday, February 14, 2005 5:13 PM