Re: [Flashcoders] where and how can I learn actionscript bytecode

2005-12-07 Thread Tyler Wright
It's not going to delete because somewhere else in your code you have a reference to that object. For example: var myObj = new A(); myObj.destory(); // won't be deleted until myObj no longer points to the class. If you really have your heart set on following something a little more OOP, try thi

Re: [Flashcoders] where and how can I learn actionscript bytecode

2005-12-04 Thread Alias
Hi Boon, Good luck with learning bytecode. However, I suspect that the reason your first delete statement doesn't work is because of the way flash's garbage collection works. When you call delete on an object, it is marked for deletion by the garbage collector. It uses reference counting to decid

RE: [Flashcoders] where and how can I learn actionscript bytecode

2005-12-04 Thread Theodore E Patrick
December 04, 2005 11:38 AM > To: Flashcoders mailing list > Subject: RE: [Flashcoders] where and how can I learn actionscript bytecode > > > Thanks for the tip Ted. > > Curious, how are you using python with flasm? (that is, what sorts of > stuff are you doing with the

RE: [Flashcoders] where and how can I learn actionscript bytecode

2005-12-04 Thread Boon Chew
on is a hell of allot of fun. Cheers, Ted ;) > -Original Message- > From: [EMAIL PROTECTED] [mailto:flashcoders- > [EMAIL PROTECTED] On Behalf Of Boon Chew > Sent: Saturday, December 03, 2005 10:41 PM > To: flashcoders@chattyfig.figleaf.com > Subject: [Flashcoders]

RE: [Flashcoders] where and how can I learn actionscript bytecode

2005-12-03 Thread Theodore E Patrick
mber 03, 2005 10:41 PM > To: flashcoders@chattyfig.figleaf.com > Subject: [Flashcoders] where and how can I learn actionscript bytecode > > > Is there any tools or documentation out there that > will aid in learning actionscript bytecode? > > I ran into this the other day, and

Re: [Flashcoders] where and how can I learn actionscript bytecode

2005-12-03 Thread Jim Armstrong
At 12:40 PM 12/3/2005 -0800, you wrote: Is there any tools or documentation out there that will aid in learning actionscript bytecode? Flasm is a good start, http://flasm.sourceforge.net/ have fun! - jim 2112 FX :: Singularity [Business Intelligence][Custom Programming] Flash Math Bl

[Flashcoders] where and how can I learn actionscript bytecode

2005-12-03 Thread Boon Chew
Is there any tools or documentation out there that will aid in learning actionscript bytecode? I ran into this the other day, and it seems like only reading the bytecode can help me understand why it doesn't work? class A { function destroy() { delete this; // doesn't delete itself