标题: 白菜宝典之一 directro 实用脚本语言 [打印本页] 作者: 五星上将 时间: 2014-11-12 11:39 标题: 白菜宝典之一 directro 实用脚本语言 1、让swf文件在Director中实现交互功能,添加以下脚本语言
on exitFrame me
go to the frame
end
2、添加一个按钮,点击按钮跳转指定帧
on mouseUp me
go 35(35为帧数,根据需要修改)
end
3、不使用按钮,实现Director的文件,能够使用鼠标键前进、后退
(1)添加1个行为脚本
on exitFrame me
go to the frame
end
(2)再添加1个影片脚本
on rightMouseUp
go previous
end
on mouseUp
go next
end