The Easiest Way to Save and Share Code Snippets on the web

instance-level const key

actionscript

last edit: Nov, 25th 2011 | jump to bottom

//keep track of count @ class level
static private var keyCount:uint;
 
//read-only non-getter unique key for instance
public const $KEY:uint = keyCount++;
66 views