私は 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);
}