오른쪽마우스 누르고 갤록은 가지는데 영상 정지가 안되네요...




import fl.video.VideoEvent;
mov.addEventListener(VideoEvent.COMPLETE, completeHandler);
function completeHandler(e:VideoEvent):void
{
        mov.play();
}




var myContextMenu:ContextMenu = new ContextMenu();
var myItem1:ContextMenuItem = new ContextMenuItem(\"890801\");
myItem1.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, function 납치(e:ContextMenuEvent):void {navigateToURL(new URLRequest(\"http://gallog.dcinside.com/zlqhem1\"))});
var myItem2:ContextMenuItem = new ContextMenuItem(\"재생/정지\");
myItem2.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, playAndStopHandler);
myContextMenu.customItems.push(myItem1);
myContextMenu.customItems.push(myItem2);
myContextMenu.hideBuiltInItems();
this.contextMenu = myContextMenu;


function playAndStopHandler(e:ContextMenuEvent):void
{
        if(mov.playing)
        {
                mov.pause();
        }else{
                mov.play();
        }
}


var 납치:MovieClip = new MovieClip();
납치.graphics.beginFill(0xFFFFFF, 0);
납치.graphics.drawRect(0, 0, stage.stageWidth, stage.stageHeight);
납치.graphics.endFill();
addChild(납치);
납치.buttonMode = true;
납치.addEventListener(MouseEvent.CLICK, 납치1);
function 납치1(e:MouseEvent):void
{
        navigateToURL(new URLRequest(\"http://gallog.dcinside.com/zlqhem1\"));
}



이거 쓰고있는데 뭐가 잘못된거죠..? ㅠ