Hi,

I'm working on a school project, which is to say I'm still pretty new to AS3.
I had to design an interactive program, and one of my elements is an embedded swf video.

On one hand, I keep receiving error 1009 which seems to point to the problematic "theory" section. I've checked my label & instance names numerous times- everything looks fine. What else might it be?

Code:
stop();

theory_btn.addEventListener(MouseEvent.CLICK,playtheory);

function playtheory(event:MouseEvent):void{
	gotoAndStop("theory");
}
Also, with respect to the embedded swf.. When I debug, this is what I get-

Code:
Attemping to launch and connect to Player using URL /Users/Alex/Desktop/school/edesign/3. teaching with digital media/Untitled-1.swf
[SWF] Users:Alex:Desktop:school:edesign:3. teaching with digital media:Untitled-1.swf - 2477530 bytes after decompression
[UnloadSWF] Users:Alex:Desktop:school:edesign:3. teaching with digital media:Untitled-1.swf
Debug session terminated.
I feel like it might be an easy fix, I'm just not sure what to do.