|
主题: dircetor与flash的问题
|
anan1019
职务:普通成员
等级:1
金币:0.0
发贴:4
|
#12004/5/11 11:26:53
我在做driector与flash时出现了问题,flash加入到driector中后,我在driector中不能很好的控制它,我想实现,flash可以自动检测是否播放完毕,播放完毕后,就会中跳到下一帧继续播放,同时我还加了一个按钮让它能控制,flash的暂停和播放功能。 在按钮中我加了 on mouseup if sprite(1).playing then sprite(1).stop() if member("flash").state = 4 then go the frame end if else sprite(1).play() end if cursor 0 end
在电影脚本中我加了 on exitFrame me if sprite(1).playing then go to the frame else go to the frame+1 end if end 但我无法实现这个功能,我每次一点暂停,它就自动跳到下一个flash动画上面,我想让它就停在当前这个flash动画上面。
|
D计划-混沌
职务:管理员
等级:6
金币:15.2
发贴:3528
|
#22004/5/11 12:06:41
if sprite(1).frame>=sprite(1).member.frameCount then go to the frame +1 end if
if sprite(1).playing then sprite(1).hold() else sprite(1).play() end if end
|
anan1019
职务:普通成员
等级:1
金币:0.0
发贴:4
|
#32004/5/11 13:52:56
对不起呀,楼上的高手,你給我的,我不太会用,请问是上面的if语句加到电影脚本中,下面的if语句加到按钮中吗???能再细一些吗
|
anan1019
职务:普通成员
等级:1
金币:0.0
发贴:4
|
#42004/5/11 14:03:50
编辑历史:[此帖最近一次被 54zq 编辑过(编辑时间:2004-05-11 20:37:52)]
|
netebb
职务:普通成员
等级:1
金币:0.0
发贴:51
|
#52004/5/11 15:26:41
编辑历史:[此帖最近一次被 54zq 编辑过(编辑时间:2004-05-11 20:38:38)]
|
anan1019
职务:普通成员
等级:1
金币:0.0
发贴:4
|
#62004/5/11 15:41:41
还请班竹帮忙呀!!!!!
|
5D荣誉斑竹
职务:普通成员
等级:4
金币:13.0
发贴:1504
|
#72004/5/11 17:34:26
on mouseup if sprite(1).playing then sprite(1).stop() go the frame -- if member("flash").state = 4 then---你这边有个判断,这个应该判断flash里的一个值,有没有用处,没有用处的话将这个关了 -- go the frame -- end if else sprite(1).play() end if cursor 0 end
閑闪互动多媒体
|