Access timeline of loaded swf

I’ve looked all over for an answer to this, it seems like it should be simple, but can’t find anything but nonsense. Below is a common block of code to load an external swf (simplified for this example). My problem lies in the function at the end where I’d like it gotoAndPlay(‘playthis’) within the swf that just loaded. I get errors like cant reference static type loader blah blah blah.



var graphicLocal:Sprite = new Sprite();
addChild(graphicLocal);
graphicLocal.x = 0;
graphicLocal.y = 60;
var graphicLoader:Loader = new Loader();

var graphicURL:String = "test1.swf"; 
var graphicRequest:URLRequest = new URLRequest(graphicURL);
graphicLoader.load(graphicRequest);
graphicLoader.contentLoaderInfo.addEventListener(Event.COMPLETE , graphicLoaded);

function graphicLoaded (event:Event):void
{
    graphicLocal.addChild(graphicLoader);

// At this point the external swf has 
successfully loaded and now I want to
tell it to go to and play a specific frame. 
I've tried variations of
graphicLocal.gotoAndPlay('playthisframe') 
but cant get it right. Keep getting a
"cant reference static type loader" error.
Any ideas?

}