Roman Kagan
Roman Kagan

Reputation: 10626

Getting total amount of memory, available in Adobe Flash from ActionScript

I have to load a lot of data from BlazeDS and/or Livecycle DS service to Adobe Flex and would like to find out what's available from memory stand point. This is similar to querying in java: long heapSize = Runtime.getRuntime().totalMemory()

Upvotes: 1

Views: 1557

Answers (1)

Christophe Herreman
Christophe Herreman

Reputation: 16085

You can't find the available memory, but you can find the memory currently in use via the System.totalMemory property.

http://livedocs.adobe.com/flex/3/langref/flash/system/System.html#totalMemory

Upvotes: 1

Related Questions