Actionscript 2 缩小(不是放大)

发布于 2024-11-09 03:01:22 字数 267 浏览 0 评论 0原文

我正在寻找一种将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏雨凉 2024-11-16 03:01:22

你可以获取屏幕分辨率然后决定舞台的scaleMode

跟踪(System.capability.screenResolutionX);

跟踪(System.capability.screenResolutionY);


resX = System.capabilities.screenResolutionX;
resY = System.capabilities.screenResolutionY;
//let's say
if (resX >= 1280 && resY >= 800)
{
    Stage.scaleMode = "noScale";
}
else
{
    Stage.scaleMode = "showAll";
}

you can get the screen resolution then decide the stage scaleMode

trace(System.capabilities.screenResolutionX);

trace(System.capabilities.screenResolutionY);


resX = System.capabilities.screenResolutionX;
resY = System.capabilities.screenResolutionY;
//let's say
if (resX >= 1280 && resY >= 800)
{
    Stage.scaleMode = "noScale";
}
else
{
    Stage.scaleMode = "showAll";
}

伴梦长久 2024-11-16 03:01:22

我也有兴趣看看将 _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%

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文