_root timeline gotoAndStop

Hi

I’m having problems getting a movie clip button on the main timeline to tell the main timeline to gotoAndStop a label when clicked.

This shoulbe be straight forward.

The script is below - any ideas on what the issue is?

Thanx

Dirk

on (press) {
//Start Dragging Movieclip Behavior
startDrag(this, false, 168, 224, 564, 476);
this.swapDepths(this._parent.getNextHighestDepth());
n=this.getDepth();
_root.introBox.swapDepths(n+1);
//End Behavior

}
on (release) {
if(getTimer()-lastClick < 500){
[COLOR=red]_root.gotoAndStop(“nointro”);
[/COLOR] loadMovieNum(“http://www.dirksmith.com/flash_2/port_allianz.swf”,50);
}
lastClick=getTimer();
stopDrag();
[COLOR=red][/COLOR]
}
on (rollOut) {
stopDrag();

}