Does anyone know how I could remove properties that have been set on a static object in AS3?
Ideally it would be something like -
foreach(property in GlobalStaticVar.properties) {
GlobalStaticVar.removeProperty(property);
}
Does anyone have any hints where to look.
Sorry I am a bit of a flash noob.
Thanks for your time.
obj = {}or if it's a custom class instance you can useobj = new SomeClass(). – inhan Mar 1 '12 at 1:11