1

私は Zachary Haight の Dynamic Video Player http://active.tutsplus.com/tutorials/actionscript/build-a-dynamic-video-player-with-actionscript-3-part-2-of-3/を使用しています。

独自の機能を追加しようとして、フルスクリーンボタンを追加しましたが、何をしても、最上位のレイヤー(アクションスクリプトレイヤーの2番目)であるにもかかわらず、他のアイテムの下に展開されます

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 は一番下の try です:

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

videoBox.parent がステージ上の唯一の表示オブジェクトであると仮定すると、それよりも高いインデックスを持つ他のオブジェクトがある場合、それらはビデオボックスの上に表示されます。

于 2012-07-11T00:24:57.617 に答える