如何使用动作脚本放大舞台
在浏览器中播放 Flash 影片时,我们可以右键单击舞台并放大。
我们是否也可以将这些代码编码为 Actionscript-3 文件中的函数?就像在特定点自动缩放到舞台上一样?当按下某个键时我们可以这样做吗?
When playing a flash movie in a browser, we can right-click on stage and zoom in.
can we also code these as functions in our actionscript-3 file? like automatically zooming onto the stage at a particular point? can we do it when some key is pressed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以使用矩阵来执行此操作,这是一个简单的示例
You can also use a Matrix to do this, here's a simple example
如果减小显示对象的 z 属性,它将靠近“相机”,从而有效地对其进行缩放。要放大特定位置,您还必须移动其 x 和 y 属性。除了右键菜单上传统支持的“放大”之外,Flash 中没有自动缩放功能。
if you decrease a display objects z property it will move closer to the 'camera' effectively zooming it. To zoom into a particular position you'll have to move its x and y properties as well. Other than the legacy supported 'zoom in' on the right click menu there's no auto zoom functionality in flash.