Flash 模板上的投资组合问题
我对与以前相同的模板还有另一个问题。
在我的网站上。 (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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里您可以找到图像:
)
2. 转到第 971 层/第 12 帧,选择“page_all”影片剪辑进行编辑(双击
)
3. 转到第 12 层/第 4 帧,选择“pages_anim”影片剪辑进行编辑(双击
)
4. 转到第 1 层/第 1 帧,选择“pages”影片剪辑进行编辑(双击)
5. 转到第 45 层/第 1 帧,选择“item1”影片剪辑进行编辑(双击)
6. 转到第 4 层/第 1 帧,选择“pic”影片剪辑进行编辑(双击)
7. 图像放置在第 1 层
添加/删除图像:
选择要编辑的“pages”动画片段(双击)(按照以下 1-4 个步骤进行编辑)
选择动作层上的第二个框架,打开代码编辑器(窗口/动作)
num_pic = 7;
该变量存储舞台上有多少图像,因此如果您想添加或删除,请相应地修改该值。每个图像实例都有一个方法,当触发 onLoad 事件时调用该方法(加载实例):
onClipEvent(加载)
{
数字1 = 4;
数量 = 4;
this.hitArea = this.area;
每个图像实例都有一个方法,
您必须根据图像的实例名称编辑数字。
我希望它有帮助,
抢
Here you can find the images:
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:
Select the 'pages' movieclip for editing (double click) (go there by following 1-4 steps)
Select the second frame on the Action Layer, open the code editor (Window/Actions)
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.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