Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Did you remember to hang on to your context? If you do this, your context, and usually everything in it, will eventually be garbage collected:
var unstableContext:SomeContext = new SomeContext(this);
So always make sure to hang on to your context in a property:
protected var _context:MosaicContext;
public function mosaictool()
{
_context = new MosaicContext(this);
}