public dynamic class DynamicClassNote the dynamic keyword used in the class declaration. So even though DynamicClass has not properties or functions defined (besides those of its super-class, Object), we can still attach properties and functions to it dynamically.
{
public DynamicClass()
{
}
}
Learn more about ActionScript Dyanmic Classes at Flex After Dark...