RE: [flexcoders] Array reference vs values

2008-07-17 Thread Gordon Smith
___ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darren Houle Sent: Wednesday, July 16, 2008 6:56 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Array reference vs values Josh Yes, what you're describing is exactly what I described and is, in

RE: [flexcoders] Array reference vs values

2008-07-17 Thread Gordon Smith
Wednesday, July 16, 2008 7:03 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Array reference vs values I think you may be able to do what you are doing by using the ByteArray class but I would wait for someone that knows more than me. The only things that get passed by reference is

RE: [flexcoders] Array reference vs values

2008-07-17 Thread Maciek Sakrejda
#x27;s suggestions is a better solution. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Darren Houle <[EMAIL PROTECTED]> Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Array reference vs values Date: Wed, 16 Jul 2

RE: [flexcoders] Array reference vs values

2008-07-16 Thread Darren Houle
set to null... thanks, you rock!! Darren To: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Thu, 17 Jul 2008 12:18:35 +1000Subject: Re: [flexcoders] Array reference vs values On Thu, Jul 17, 2008 at 11:55 AM, Darren Houle <[EMAIL PROTECTED]> wrote: Josh Yes, what you're describing is exactl

Re: [flexcoders] Array reference vs values

2008-07-16 Thread Josh McDonald
BWAHAHAHAHAHA! *wipes tear* That's awesome :) On Thu, Jul 17, 2008 at 12:53 PM, Sid Maskit <[EMAIL PROTECTED]> wrote: > Oops. Where my speech recognition software wrote "teen reference", it > should read "dereference". > -- "Therefore, send not to know For whom the bell tolls. It tolls for

Re: [flexcoders] Array reference vs values

2008-07-16 Thread Sid Maskit
Oops. Where my speech recognition software wrote "teen reference", it should read "dereference". - Original Message From: Sid Maskit <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, July 16, 2008 7:50:07 PM Subject: Re: [flexcoders] Arra

Re: [flexcoders] Array reference vs values

2008-07-16 Thread Sid Maskit
you want to set one or more of its properties to null. - Original Message From: Darren Houle <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, July 16, 2008 6:55:33 PM Subject: RE: [flexcoders] Array reference vs values Josh Yes, what you're describing

Re: [flexcoders] Array reference vs values

2008-07-16 Thread Josh McDonald
On Thu, Jul 17, 2008 at 11:55 AM, Darren Houle <[EMAIL PROTECTED]> wrote: > Josh > > Yes, what you're describing is exactly what I described and is, in fact, > what it happening... but to say I don't ever need to do this? Well... > yes... I need to do this... and it has nothing to do with the ga

Re: [flexcoders] Array reference vs values

2008-07-16 Thread Sherif Abdou
From: Sherif Abdou <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, July 16, 2008 8:59:54 PM Subject: Re: [flexcoders] Array reference vs values If i remember correctly since I am mixing too much C++,ActionScript, Coldfusion and learning them all the same time. Any

Re: [flexcoders] Array reference vs values

2008-07-16 Thread Sherif Abdou
Houle <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, July 16, 2008 8:55:33 PM Subject: RE: [flexcoders] Array reference vs values Josh Yes, what you're describing is exactly what I described and is, in fact, what it happening... but to say I don't ever need to

RE: [flexcoders] Array reference vs values

2008-07-16 Thread Darren Houle
to memory space... so if I null that memory space it should affect all the vars pointing to that memory space. Does that make more sense?Darren To: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Thu, 17 Jul 2008 11:30:29 +1000Subject: Re: [flexcoders] Array reference vs values When you do this:

Re: [flexcoders] Array reference vs values

2008-07-16 Thread Josh McDonald
When you do this: var date:Date = new Date(); You're creating an instance of Date and a reference to it named "date". When you do this: var ref:Date = arr[0] as Date; You're creating another reference to the same instance, this time your reference is named "ref". So when you set ref = null