no problem. glad you got it going. im guessing you've just started using classes. you'll find now that you will use Delegate all over the place.

for what its worth, heres my favorite delegate trick:

PHP Code:
mc.onEnterFrame mx.utils.Delegate.create(this, function ()
{
    
// code here.
}); 
makes it easier to group nested functions within functions in classes rather than making a bunch of dependent private functions.