System.totalMemory in AS3
The System class (flash.system.System) in ActionScript 3 has a new property called totalMemory (flash.system.System.totalMemory). This property provides the current memory usage of the Flash player in bytes. Examples: var o:Object = new Object(); trace(System.totalMemory); // 4960256 var o:MovieClip = new MovieClip(); trace(System.totalMemory); // 4964352





