Remove _global from Debug > List Variables [Archive URL] [Comments: 1]

I use Debug > List Variables while debugging. If you use V2, there is a ton of _global objects and classes that get created. Here is how to hide them from Debug > List Variables.&

//Paste this line at the top of your v2 app
//No more _global in List Variables output
ASSetPropFlags( _global , null , 1 , 1 )

Another side effect is that Debug > List Variables takes far less time. Happy debugging.