Skip to content

Instantly share code, notes, and snippets.

View gabriel-laet's full-sized avatar

Gabriel Laet gabriel-laet

View GitHub Profile
/**
* Monkey patch for flash.utils.Dictionary
* @example Basic usage:<listing version="3.0">
* var user:Dictionary = new Dictionary();
* user.name = "Gabriel Laet";
* user.website = "http://gabriellaet.com";
* trace(user.length());
* trace(user.keys());
* trace(user.values());