我使用Adobe Illustrator制作了大量的displayobjects。我试图让它们与我的移动设备的舞台完全相同的宽度和高度。
应该很简单....但我有一些是关闭的,有些是关于一个像素少......
我不介意他们内心有点紧张。重要的是让他们在我想要的时候覆盖屏幕。
为了确保my resize script正常工作,我在脚本中添加了一个前后跟踪语句,并在调用该函数显示它后立即调整大小。
```
trace("!!! Profile scene width = " + profileScene_mc.width);
trace("!!! stage stageWidth = " + stage.stageWidth);
trace("!!! stage width = " + stage.width);
profileScene_mc.width = stage.stageWidth;
trace("!!! Profile scene width = " + profileScene_mc.width);
trace("!!! stage stageWidth = " + stage.stageWidth);
trace("!!! stage width = " + stage.width);
```
...痕量
```
!!! Profile scene width = 480.05
!!! stage stageWidth = 480
!!! stage width = 2681.65
!!! Profile scene width = 480.05
!!! stage stageWidth = 480
!!! stage width = 2681.65
```
显然,这个配置文件场景并没有填满我的整个舞台。影片剪辑中的任何内容都不在其原始范围之外。 MovieClip最初是450乘800 ...我不知道还能做什么或如何调试它。在过去的几周里,我的项目一直很痛苦。我打算在位图中打破所有内容然后重新创建它,如果我无法解决它但我宁愿不再依赖它。