Flash 模板上的投资组合问题

发布于 2024-10-09 16:49:20 字数 470 浏览 4 评论 0原文

我对与以前相同的模板还有另一个问题。

在我的网站上。 (www.nikstudio.cl)我需要在网页的组合(菜单“trabajos”)中显示一些图片。如果单击缩略图,您可以看到该缩略图的完整尺寸版本。我的问题有两个:

首先,图片一和图片二与五六一样(我无法更改它,因为我找不到执行此操作的地方。)

第二个是当我复制并粘贴时(在动画剪辑“sprite 656”的一个新层)我在 swf 中获得了投资组合上的新图片,但我无法单击它。

你能帮我看看这是为什么吗???

pd:完整的模板在这里。 (.fla 和所有文件) http://hotfile.com/ dl/93339597/35e8fdb/new_28781.zip.zip.html

谢谢

I have another question about the same template as before.

in my website. (www.nikstudio.cl) I need to show in the webpage's portfolio (menu "trabajos") show a few pictures. If you click the thumbnail picture you can see the full size version of that thumbnail. My problem are two:

First the picture one and two are the same as five a six ( and i can't change it cause i don't find the place to do this.)

And the second is when I copy and paste (in a new layer) of the movieclip "sprite 656" i get in the swf a new picture on the portfolio but i can't click it.

Can you help me why is that???

pd: the full template is here. (the .fla an all the files) http://hotfile.com/dl/93339597/35e8fdb/new_28781.zip.zip.html

thanks

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

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

发布评论

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

评论(1

心清如水 2024-10-16 16:49:20

在这里您可以找到图像:

  1. 转到第 174 层/第 2 帧,选择“pages_mov”影片剪辑进行编辑(双击


2. 转到第 971 层/第 12 帧,选择“page_all”影片剪辑进行编辑(双击


3. 转到第 12 层/第 4 帧,选择“pages_anim”影片剪辑进行编辑(双击


4. 转到第 1 层/第 1 帧,选择“pages”影片剪辑进行编辑(双击)
5. 转到第 45 层/第 1 帧,选择“item1”影片剪辑进行编辑(双击)
6. 转到第 4 层/第 1 帧,选择“pic”影片剪辑进行编辑(双击)
7. 图像放置在第 1 层

添加/删除图像:

  1. 选择要编辑的“pages”动画片段(双击)(按照以下 1-4 个步骤进行编辑)

  2. 选择动作层上的第二个框架,打开代码编辑器(窗口/动作)

  3. num_pic = 7; 该变量存储舞台上有多少图像,因此如果您想添加或删除,请相应地修改该值。
  4. 如果要添加新映像,请确保更改其实例名称。现在是 item1、item2...item5
  5. 每个图像实例都有一个方法,当触发 onLoad 事件时调用该方法(加载实例):

    onClipEvent(加载)
    {
    数字1 = 4;
    数量 = 4;
    this.hitArea = this.area;
    每个图像实例都有一个方法,

您必须根据图像的实例名称编辑数字。

我希望它有帮助,

Here you can find the images:

  1. Go to Layer 174 / Frame 2, Select the 'pages_mov' movie clip for editing (double

click)
2. Go to Layer 971 / Frame 12, Select the 'page_all' movie clip for editing (double

click)
3. Go to Layer 12 / Frame 4, Select the 'pages_anim' movie clip for editing (double

click)
4. Go to Layer 1 / Frame 1, select the 'pages' movie clip for editing (double click)
5. Go to Layer 45/ Frame 1, select the 'item1' movie clip for editing (double click)
6. Go to Layer 4 / Frame 1, select the 'pic' movie clip for editing (double click)
7. The images are placed on Layer 1

Adding / Removing images:

  1. Select the 'pages' movieclip for editing (double click) (go there by following 1-4 steps)

  2. Select the second frame on the Action Layer, open the code editor (Window/Actions)

  3. num_pic = 7; This variable stores how many images you have on the stage, so if you want to add or remove, amed this value accordingly.
  4. If you want to add a new image, make sure you change its instance name. it is now item1, item2... item5
  5. Every image instance has a method which is called when the onLoad event is triggered (The instance is loaded):

    onClipEvent (load)
    {
    num1 = 4;
    num = 4;
    this.hitArea = this.area;
    }

Here you have to edit the numbers according to the instance name of the image.

I hope it helps,
Rob

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