如何在 Flash 上拖动和缩放大影片剪辑? (就像谷歌地图 - 没有 +- 按钮)

发布于 2024-08-06 20:32:36 字数 60 浏览 6 评论 0原文

就是这样。我想要一个大的影片剪辑或图像可以像地图一样在屏幕上拖动。 我对动作脚本很陌生,所以请描述一下。

that's about it. I want a big movieclip or image to be dragable around the screen like a map.
i'm very new to actionscript so please be descriptive.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

北凤男飞 2024-08-13 20:32:36

选项 1:最简单的选择是使用 ScrollPane 控件。

最初您可以完全不需要任何代码。

  1. 拖拽一个 ScrollPane 组件
    组件面板(Windows/Linux 上为 Ctrl+F7 / OSX 上为 CMD+F7
  2. )这
    参数选项卡
  3. 输入影片剪辑的路径
    ScollPane 源代码中的链接 id
    范围。

查看文档和示例。

选项 2:使用掩码:

  1. 在 IDE 中设置掩码或使用动作脚本为 bigMovieClip
  2. 添加 MOUSE_DOWNMOUSE_UP 的事件侦听器 设置拖动

操作需要 3:

bigMovieClip.addEventListener(MouseEvent.MOUSE_DOWN, dragOn);
stage.addEventListener(MouseEvent.MOUSE_UP, dragOff);

function dragOn(event:MouseEvent):void{
    event.currentTarget.startDrag();
}
function dragOff(event:MouseEvent):void{
    bigMovieClip.stopDrag();
}

选项 3: 使用 scrollRect MovieClip 属性

例如,如果您的剪辑为 1000x1000,并且您希望可见区域从 0,0 开始为 500x500,那么您需要做的就是

bigMovieClip.scrollRect = new Rectangle(0,0,500,500);

当您需要滚动,
您存储矩形,根据需要修改 xy 并更新滚动矩形

var sRect:Rectangle = bigMovieClip.scrollRect;
sRect.x += 20;
bigMovieClip.scrollRect = sRect;

祝你好运

Option 1: Your easiest option would be to use the ScrollPane control in Flash.

You could get away with no code at all initially.

  1. Drag a ScrollPane component from the
    Components Panel (Ctrl+F7 on Windows/Linux /CMD+F7 on OSX)
  2. Set scrollDrag to true in the
    Parameters tab
  3. Input the path to a movie clip's
    linkage id in the ScollPane's source
    parameter.

Have a look at the documetation and examples.

Option 2: Use a mask:

  1. set a mask in the IDE or using actionscript to your bigMovieClip
  2. add event listeners for MOUSE_DOWN and MOUSE_UP to setup dragging

actioncript 3 required:

bigMovieClip.addEventListener(MouseEvent.MOUSE_DOWN, dragOn);
stage.addEventListener(MouseEvent.MOUSE_UP, dragOff);

function dragOn(event:MouseEvent):void{
    event.currentTarget.startDrag();
}
function dragOff(event:MouseEvent):void{
    bigMovieClip.stopDrag();
}

Option 3: Use the scrollRect property of MovieClip

If your clip is 1000x1000 for example, and you want your visible area to be 500x500 starting from 0,0 all you need to do is

bigMovieClip.scrollRect = new Rectangle(0,0,500,500);

then when you need to scroll,
you store the rectangle, modify the x or y depending on your needs and update the scrollRect

var sRect:Rectangle = bigMovieClip.scrollRect;
sRect.x += 20;
bigMovieClip.scrollRect = sRect;

Good luck

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