在as3中,调用stage.width和stage.stageWidth有什么区别

我在某处读到,如果舞台上什么都没有,那么stage.width的值为0,
但是,如果我什么都没有,只能在舞台上动态加载内容,那会发生什么?

我已经尝试过了,当我在舞台上动态加载内容时,我得到了

  stage.width=value;  // where value is dynamic number


谁能解释这个?
谢谢。

最佳答案

根据Adobe Reference for the Stage Class


stage.width

指示显示对象的宽度,以像素为单位。宽度是
根据显示对象的内容范围进行计算。

因此,此属性随您在舞台中添加/删除元素而变化。
stage.stageWidth

指定舞台的当前宽度(以像素为单位)。

调整Flash Player窗口的大小时,此属性会有所不同。

08-15 16:50