[flexcoders] How long should a remote call take?

2006-06-01 Thread nz_mehere
I am sure this can't me right, but my remote call using RemoteObject to a CFC to return 1 record is taking 11 seconds. I have put debugging code in the Actions script and the call takes less than 10ms I have put debugging code in the CFC and it takes less than 1500ms to run (there is more

[flexcoders] Re: how do I prevent users from accessing my super extened class?

2006-05-03 Thread nz_mehere
it... --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 5/3/06, nz_mehere [EMAIL PROTECTED] wrote: I have writen a class that extends the VSlider VSliders have the property of thumbCount, which is how many little arrows appear on the slider. I want to prevent

[flexcoders] Re: how do I prevent users from accessing my super extened class?

2006-05-03 Thread nz_mehere
/ Flash Player 9 you'll use ActionScript 3, which has the final keyword which can be applied at the class or method levels to stop subclasses overriding/extending functionality. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nz_mehere

[flexcoders] Re: how do I prevent users from accessing my super extened class?

2006-05-03 Thread nz_mehere
: Correct. public final function set thumbCount(number:Number):void { super.thumbCount = number; } -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nz_mehere Sent: Wednesday, May 03, 2006 4:12 PM To: flexcoders@yahoogroups.com Subject

[flexcoders] Re: property-case in flex-enterprise-service.xml

2006-05-03 Thread nz_mehere
another way is this: cfset s=structNew() cfset s[firstName] =Bob ...bit less typing... --- In flexcoders@yahoogroups.com, Rick Schmitty [EMAIL PROTECTED] wrote: oops I'll answer my own question, seems like it is a Coldfusion thing with how it creates structs and nothing to do with Flex

[flexcoders] Re: how do I prevent users from accessing my super extened class?

2006-05-03 Thread nz_mehere
: override public final function set thumbCount(number:Number):void { super.thumbCount = number; } -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nz_mehere Sent: Wednesday, May 03, 2006 4:48 PM To: flexcoders@yahoogroups.com Subject

[flexcoders] how do I prevent users from accessing my super extened class?

2006-05-02 Thread nz_mehere
Hi there, I have writen a class that extends the VSlider VSliders have the property of thumbCount, which is how many little arrows appear on the slider. I want to prevent people from setting there own. I thought I could hide it from them by overriding the thumbCount property with a private

[flexcoders] Re: namespaces and sub-classes

2006-04-30 Thread nz_mehere
[mailto:[EMAIL PROTECTED] On Behalf Of nz_mehere Sent: Friday, April 28, 2006 1:38 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: namespaces and sub-classes Hi Matt, I was suspecting that may be the case. Where can I find some info on creating a namespace manifest file you

[flexcoders] Re: Problem with Firefox and Flex 2 apps?

2006-04-28 Thread nz_mehere
If you right click on the Flash movie, are you seeing About Macromedia Flash player 8 or About Adobe Flashplay 8.5? The behaviour you are describing sounds like you have the wrong version of Flash... --- In flexcoders@yahoogroups.com, Suresh Akula [EMAIL PROTECTED] wrote: I got the same

[flexcoders] Re: namespaces and sub-classes

2006-04-28 Thread nz_mehere
=com.here.it.is.again.* Alternatively you could create a namespace manifest file, but I don't know if it's worth it. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nz_mehere Sent: Thursday, April 27, 2006 5:09 PM To: flexcoders

[flexcoders] namespaces and sub-classes

2006-04-27 Thread nz_mehere
Hi Guys, I am learngin about namespaces. It's great you can have multiple name spaces in a .MXML file, but my question is this... if I have: mx:Canvas ...[etc etc]... xmlns:myNameSpace=com.here.it.is.* and in my classes I have the folder structure /com/here/it/is/again/ is there any way I