1

我有一个图像查看器电影,在 HTML 中它的大小以百分比宽度 = 80% 和高度 = 80% 定义。电影中有一个垂直的 TileList 和比电影中容纳的更多的缩略图。所以通常除了 Tilelist 之外还有一个滚动条。当我调整浏览器窗口的大小时,电影的大小调整好了,但滚动条消失了!这是电影中的一些代码:

    stage.addEventListener(Event.RESIZE, resizeHandler);
    stage.align = StageAlign.TOP_LEFT;
    stage.scaleMode = StageScaleMode.NO_SCALE;
    .
    .
    .
    function resizeHandler(e:Event):void {
        movieBackground.height = stage.stageHeight;
        movieBackground.width = stage.stageWidth;
        movieBackground.x = 0;
        movieBackground.y = 0;
        thumbs.columnWidth = stage.stageWidth / 6; 
        thumbs.rowHeight = stage.stageHeight / 6; 
        thumbs.columnCount = 1;
        thumbs.rowCount = (stage.stageHeight) / thumbs.rowHeight; 
        thumbClip.x = stage.stageWidth - thumbs.columnWidth;
        thumbClip.y = 0;
        resizeCurrentImage();
    }
4

0 回答 0