1

我正在使用 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);
}
4

1 回答 1

0

索引 0 是底部尝试:

videoBox.parent.setChildIndex( videoBox, videoBox.parent.numChildren - 1); 

假设 videoBox.parent 是舞台上唯一的显示对象,如果有其他索引高于该索引的其他对象,它们将出现在您的视频框上方。

于 2012-07-11T00:24:57.617 回答