Targeting external swfs with getTimer

Hi there,

I’m currently using getTimer() to test when certain animations and bits of code have been executed. It looks like this:

function update_timer()
{
this.createTextField(“timer_txt”, this.getNextHighestDepth(), 25, 600, 130, 22);
var timer_fmt:TextFormat = new TextFormat();
timer_fmt.color = 0xFFFFFF;
timer_fmt.size = 14;
this.timer_txt.text = "total time: " + getTimer();
timer_txt.setTextFormat(timer_fmt);
}

It works great, but I’m also using a container.swf file where I load several other swf files externally. I want to keep track of animations and code once those files are loaded, but getTimer always returns the amount of time I’ve had container.swf open (I hope that makes sense), even when I’ve put the function inside the child swf.

Is there any way to specify which swf you want to use getTimer for, or does anyone have any other sly suggestions?

Thanks