Help: Problem with 'this' in setInterval

one = function()
{
trace(this);
}

two = function()
{
one();
}

setInterval(one,100); // it doesn’t work
setInterval(two,100); // it works

// what’s wrong ? :slight_smile: