In previous versions of Actionscript, you could use delete in conjunction with Object.registerClass('name', null) to delete class definitions at runtime. Now, according to Adobe documentation, delete will only remove any dynamically attached properties, leaving the core object or definition lingering in memory.

Is there a way to completely remove a class definition (not just an instance) at runtime in Actionscript 3?

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Simply, no.

In AS3, you can only delete members of dynamic objects. You've probably already googled and found this, but: http://gskinner.com/blog/archives/2006/06/understanding_t.html.

You can segregate definitions by using multiple ApplicationDomains, but I guess this isn't quite what you're looking for.

link|improve this answer
what happens if you loaded and external swf with some new class definitions and then unloaded it? (my guess is that those definitions stick, but if not...) – gltovar Jul 19 '11 at 23:39
Thanks for the reply. Yep, I've googled around and found that, but was hoping that there was some alternative in AS3. – deadbeef Jul 19 '11 at 23:40
1  
@gltovar: Yes, the definitions stick around (unfortunately). – deadbeef Jul 19 '11 at 23:41
@shanethehat: re. segragated ApplicationDomain: If you unload the root of an ApplicationDomain (I'm assuming that you can use a child domain), would the definitions for that domain be gc'd? – deadbeef Jul 19 '11 at 23:43
It'd be worth a test. Without trying, my guess is that it will depend on the application domain used for loading the swf. If you use ApplicationDomain.currentDomain then they should stick after unloading, and if not you're putting your faith in the GC. It's still not going to be an option for immediately deleting something. – shanethehat Jul 19 '11 at 23:43
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.