Actionscript 2 缩小(不是放大)
我正在寻找一种将 Flash 网站(使用 Actionscript 2.0)缩放到不同分辨率的方法。屏幕分辨率较小的人在查看我的完整 Flash 网站时遇到问题,将参数设置为 100% 宽度和 100% 高度可以解决该问题,但会创建另一个问题...对于屏幕分辨率较大的人来说,这会使网站看起来不成比例且像素化。屏幕分辨率。
我的问题是 - 如何使用动作脚本缩小网站,但只能达到原始舞台的宽度和高度?我以前见过类似的问题,但只使用 AS3。不知何故,有一种方法可以根据浏览器大小从精确匹配切换到显示全部吗?
I am looking for a way to scale a flash website (using actionscript 2.0) to different resolutions. People with smaller screen resolutions are having issues seeing my full flash website, and setting the parameters to 100% width and 100% height solve that issue but create another one... It makes the site look out of proportion and pixelated for people with larger screen resolutions.
My question is- how can I use actionscript to scale the website down, but only up to the original stage width and height? I've seen similar questions asked before, but only using AS3. Somehow there is a way to switch from exactfit to showall depending on browser size?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以获取屏幕分辨率然后决定舞台的scaleMode
you can get the screen resolution then decide the stage scaleMode
我也有兴趣看看将 _root 的 xscale 和 yscale 设置为不同的百分比是否可以正确调整整个事情,请重新使用!
<代码>
_root._xscale = 50; //50%
<代码>
<代码>
_root._yscale = 60; //60%
I'm also interested to see if setting the _root's xscale and yscale to different percents would properly adjust the whole thing, get back to use please!
_root._xscale = 50; //50%
_root._yscale = 60; //60%