flash时钟制作问题求助
我从网上找到制作FLASH时钟的教程照做,为什么每次测试影片时都出现下面的错误提示?我按照教程反复做过并检查了好多次,总是这样子,代码肯定是没错的,因为是直接复制进FLA...
我从网上找到制作FLASH时钟的教程照做,为什么每次测试影片时都出现下面的错误提示?我按照教程反复做过并检查了好多次,总是这样子,代码肯定是没错的,因为是直接复制进FLASH的,对这个时钟制作喜欢了好多年可就是一直不成功,不知究竟哪里出错了,今天请各位高手帮忙解决,如果问题解决了我会给加分的哦,谢谢了。为了各位能更好地帮我解决这问题,特把我找的教程也附在下方请各位参考错误在何处。
**错误** 场景=场景 1, 图层=图层 2, 帧=1:第 1 行: 语法错误。
nClipEvent (enterFrame) {
**错误** 场景=场景 1, 图层=图层 2, 帧=1:第 2 行: 语法错误。
setProperty(this,_rotation,_root.hours);
**错误** 场景=场景 1, 图层=图层 2, 帧=1:第 1 行: 语句必须出现在 on/onClipEvent 处理函数中
nClipEvent (enterFrame) {
**错误** 场景=场景 1, 图层=图层 3, 帧=1:第 1 行: 语法错误。
nClipEvent (enterFrame) {
**错误** 场景=场景 1, 图层=图层 3, 帧=1:第 2 行: 语法错误。
setProperty(this,_rotation,_root.minutes);
**错误** 场景=场景 1, 图层=图层 3, 帧=1:第 1 行: 语句必须出现在 on/onClipEvent 处理函数中
nClipEvent (enterFrame) {
**错误** 场景=场景 1, 图层=图层 4, 帧=1:第 1 行: 语法错误。
nClipEvent (enterFrame) {
**错误** 场景=场景 1, 图层=图层 4, 帧=1:第 2 行: 语法错误。
setProperty(this,_rotation,_root.seconds);
**错误** 场景=场景 1, 图层=图层 4, 帧=1:第 1 行: 语句必须出现在 on/onClipEvent 处理函数中
nClipEvent (enterFrame) {
动作脚本错误总数:9 报错:9
FLASH时钟制作
(网络资源)
onClipEvent (enterFrame) {
setProperty(this,_rotation,_root.hours);
}
11、组装分针:方法同10,脚本代码为:onClipEvent (enterFrame) {
setProperty(this,_rotation,_root.minutes);
}
12、组装秒针:方法同10,脚本代码为:onClipEvent (enterFrame) {
setProperty(this,_rotation,_root.seconds);
}
time = new Date();
hours = time.getHours();
minutes = time.getMinutes();
seconds = time.getSeconds();
if (hours>12) {
hours = hours-12;
}
if (hours<1) {
hours = 12;
}
hours = hours*30+int(minutes/2);
minutes = minutes*6+int(seconds/10);
seconds = seconds*6;
在第2帧插入空白关键帧,输入脚本代码:
gotoAndPlay(1); 展开
**错误** 场景=场景 1, 图层=图层 2, 帧=1:第 1 行: 语法错误。
nClipEvent (enterFrame) {
**错误** 场景=场景 1, 图层=图层 2, 帧=1:第 2 行: 语法错误。
setProperty(this,_rotation,_root.hours);
**错误** 场景=场景 1, 图层=图层 2, 帧=1:第 1 行: 语句必须出现在 on/onClipEvent 处理函数中
nClipEvent (enterFrame) {
**错误** 场景=场景 1, 图层=图层 3, 帧=1:第 1 行: 语法错误。
nClipEvent (enterFrame) {
**错误** 场景=场景 1, 图层=图层 3, 帧=1:第 2 行: 语法错误。
setProperty(this,_rotation,_root.minutes);
**错误** 场景=场景 1, 图层=图层 3, 帧=1:第 1 行: 语句必须出现在 on/onClipEvent 处理函数中
nClipEvent (enterFrame) {
**错误** 场景=场景 1, 图层=图层 4, 帧=1:第 1 行: 语法错误。
nClipEvent (enterFrame) {
**错误** 场景=场景 1, 图层=图层 4, 帧=1:第 2 行: 语法错误。
setProperty(this,_rotation,_root.seconds);
**错误** 场景=场景 1, 图层=图层 4, 帧=1:第 1 行: 语句必须出现在 on/onClipEvent 处理函数中
nClipEvent (enterFrame) {
动作脚本错误总数:9 报错:9
FLASH时钟制作
(网络资源)
onClipEvent (enterFrame) {
setProperty(this,_rotation,_root.hours);
}
11、组装分针:方法同10,脚本代码为:onClipEvent (enterFrame) {
setProperty(this,_rotation,_root.minutes);
}
12、组装秒针:方法同10,脚本代码为:onClipEvent (enterFrame) {
setProperty(this,_rotation,_root.seconds);
}
time = new Date();
hours = time.getHours();
minutes = time.getMinutes();
seconds = time.getSeconds();
if (hours>12) {
hours = hours-12;
}
if (hours<1) {
hours = 12;
}
hours = hours*30+int(minutes/2);
minutes = minutes*6+int(seconds/10);
seconds = seconds*6;
在第2帧插入空白关键帧,输入脚本代码:
gotoAndPlay(1); 展开
4个回答
展开全部
你之前有没有命名好
我也制作了一个
是比较
简单点
的
代码发给你参考下
制作的三个指针的实例名称分别为:(时:a,分:b,秒:c)
那个转换为影片剪辑的过程应该知道吧
输入代码:
h=T.getHours()
f=T.getMinutes()
s=T.getSeconds()
c._rotation=s*6
b._rotation=f*6
a._rotation=h*30+f/2
好咯
就这么简单
网上的总是长篇大论
其实我也看不懂
还不如自己去研究呢。
这肯定可以做出效果
关键是之前你要把实例名称给分清
满意要给分哦
我也制作了一个
是比较
简单点
的
代码发给你参考下
制作的三个指针的实例名称分别为:(时:a,分:b,秒:c)
那个转换为影片剪辑的过程应该知道吧
输入代码:
h=T.getHours()
f=T.getMinutes()
s=T.getSeconds()
c._rotation=s*6
b._rotation=f*6
a._rotation=h*30+f/2
好咯
就这么简单
网上的总是长篇大论
其实我也看不懂
还不如自己去研究呢。
这肯定可以做出效果
关键是之前你要把实例名称给分清
满意要给分哦
展开全部
错的,AS2.0 以后就不这样写了,其实很简单的,哪那么复杂
http://img5.3lian.com/flash/f10/2/18.rar
这个地址你去下个源文件,自己研究下,代码什么里面有,还有星期的
http://img5.3lian.com/flash/f10/2/18.rar
这个地址你去下个源文件,自己研究下,代码什么里面有,还有星期的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
制作一个时钟不要那么麻烦呀
你做一个影片剪辑 做好一个时钟,只要对代码
第一帧:
now = new Date();
clHours = now.getHours();
clMinutes = now.getMinutes();
clSeconds = now.getSeconds();
setProperty("时针", _rotation, (clHours + clMinutes / 60) * 30);
setProperty("分针", _rotation, clMinutes * 6);
setProperty("秒针", _rotation, clSeconds * 6);
nian = now.getFullYear();
yue = now.getMonth() + 1;
ri = now.getDate();
_root.riqi=nian+"年"+yue+"月"+ri+"日"+"\t星期"+["日","一","二","三","四","五","六"][now.getDay()];
_root.shijian=clHours+":"+clMinutes+":"+clSeconds
第二帧
gotoAndPlay(1);
效果如下
http://up.awqq.net/up/20090424114822_shizhong.swf
你做一个影片剪辑 做好一个时钟,只要对代码
第一帧:
now = new Date();
clHours = now.getHours();
clMinutes = now.getMinutes();
clSeconds = now.getSeconds();
setProperty("时针", _rotation, (clHours + clMinutes / 60) * 30);
setProperty("分针", _rotation, clMinutes * 6);
setProperty("秒针", _rotation, clSeconds * 6);
nian = now.getFullYear();
yue = now.getMonth() + 1;
ri = now.getDate();
_root.riqi=nian+"年"+yue+"月"+ri+"日"+"\t星期"+["日","一","二","三","四","五","六"][now.getDay()];
_root.shijian=clHours+":"+clMinutes+":"+clSeconds
第二帧
gotoAndPlay(1);
效果如下
http://up.awqq.net/up/20090424114822_shizhong.swf
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你并没有加nClipEvent (enterFrame) 函数。。`
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询