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
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
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
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]
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
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
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
7 matches
Mail list logo