> When I type "flash.utils.t", trace(rest:Array):void
> is displayed. So, I assumed it was still defined there
> but just included/imported by default.
This is a mistake, sorry about that.
> So, is there a way to specify that I want the
> "global" trace function rather than my class-defined
> trace function (from within my class)?
No, though a work around should be easy. You
could create your own wrapper to the trace function in
the top level package scope:
package
{
global_trace(...rest:Array):void
{
trace(rest);
}
}
Pete