2个回答
展开全部
制作方法:
1、新建Flash文档,背景色青色。
2、新建一个电影剪辑,命名为MC。第一层插入一个关键帧,第一帧画母鸡,全居中;第二帧画蛋,全居中。新一个层插入一个空白关键帧,两个关键帧都加上帧动作stop(); 。
3、回到主场景,从库中把MC拖到舞台,放在靠左的位置,选中MC,打开“动作-电影剪辑”面板,输入脚本:
on (press) {
startDrag(this);
var newdepth = this._parent.getNextHighestDepth();
var newname = "copy" + newdepth;
var prevname = "copy" + (newdepth-1);
if (this._parent[prevname] == undefined) this._parent[prevname] = this;
this.duplicateMovieClip(newname,newdepth);
this._parent[newname]._x = this._parent[prevname]._x + 0;
this._parent[newname]._y = this._parent[prevname]._y + 0;
}
on (release) {
stopDrag();
}
on (dragOut) {
this.gotoAndStop("2");
}
on (releaseOutside) {
stopDrag();
}4、加上自己喜欢的文字或装饰,测试,存盘。
1、新建Flash文档,背景色青色。
2、新建一个电影剪辑,命名为MC。第一层插入一个关键帧,第一帧画母鸡,全居中;第二帧画蛋,全居中。新一个层插入一个空白关键帧,两个关键帧都加上帧动作stop(); 。
3、回到主场景,从库中把MC拖到舞台,放在靠左的位置,选中MC,打开“动作-电影剪辑”面板,输入脚本:
on (press) {
startDrag(this);
var newdepth = this._parent.getNextHighestDepth();
var newname = "copy" + newdepth;
var prevname = "copy" + (newdepth-1);
if (this._parent[prevname] == undefined) this._parent[prevname] = this;
this.duplicateMovieClip(newname,newdepth);
this._parent[newname]._x = this._parent[prevname]._x + 0;
this._parent[newname]._y = this._parent[prevname]._y + 0;
}
on (release) {
stopDrag();
}
on (dragOut) {
this.gotoAndStop("2");
}
on (releaseOutside) {
stopDrag();
}4、加上自己喜欢的文字或装饰,测试,存盘。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-07-08
展开全部
放在靠左的位置
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询