将图层移动到更高的z-index,actionscript 3

时间:2012-07-10 23:34:10

标签: actionscript-3 z-index movieclip

我正在使用Zachary Haight的动态视频播放器http://active.tutsplus.com/tutorials/actionscript/build-a-dynamic-video-player-with-actionscript-3-part-2-of-3/

并试图添加我自己的功能,我添加了一个全屏按钮,但无论我做什么它都在其他项目下解释,尽管它是最顶层(第二个动作脚本层

function fullScrnBtnClick(event:MouseEvent):void
{
//add code for increasing player size
    videoBox.x = stage.stageWidth;
    videoBox.y = stage.stageHeight;
    videoBox.parent.setChildIndex( videoBox, 0);
}

1 个答案:

答案 0 :(得分:0)

索引0是最底层的尝试:

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

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