Flex:ActionScript项目大小问题

时间:2009-05-18 01:02:43

标签: flex actionscript-3 size

我有一个有趣的问题一小时..在我的flex项目中,所有宽度和高度属性都返回为零..我试过这个:

    private function onEnterFrame(e:Event):void
    {
        trace(stage.width, parent.width, this.width, root.width);
    }

和结果:

0 0 0 0

使用Flex,sdk 3.2

有人可以帮助我吗?

谢谢..

1 个答案:

答案 0 :(得分:4)

我认为你想要stage.stageWidth和stage.stageHeight,而不是stage.width和stage.height。