我正在使用 Zachary Haight 的动态视频播放器http://active.tutsplus.com/tutorials/actionscript/build-a-dynamic-video-player-with-actionscript-3-part-2-of-3/
并尝试添加自己的功能,我添加了一个全屏按钮,但无论我做什么,它都会在其他项目下展开,尽管它是最顶层(仅次于 actionscript 层
function fullScrnBtnClick(event:MouseEvent):void
{
//add code for increasing player size
videoBox.x = stage.stageWidth;
videoBox.y = stage.stageHeight;
videoBox.parent.setChildIndex( videoBox, 0);
}