在Director中制作动画光标
1.启动Director,建立新文件,并新建一组演员,并将它们全部选中,再选取Modify菜单下的Cast to time命令来创建动画。
2.在Score窗口选中角色,将其墨水效果设置为Background Transparent,即背景透明。
3.单击Insert菜单下Film Loop命令,在弹出的对话框中输入循环动画的名称。单击OK,可以发现在Cast窗口中又多了一个演员。
4.回到Score窗口,并将Score窗口中原角色删除,再在Cast窗口中将刚才的演员拖至舞台产生新的角色,同时设置Score窗口中角色的画面跨度拖为1帧。
5.编写程序,在Score窗口中双击脚本通道的第一帧,输入如下代码:
on enterframe
cursor 200
set the loch of sprite 1 to the mouseh
set the locv of sprite 1 to the mousev
updatestge
end
on exitframe
go to the frame
end
6.关闭Script、Cast、Score窗口,点“播放”钮来观看电影效果,可以发现,一只可爱的动画鼠标就出现在屏幕上了,而且它会随着鼠标的移动而移动,产生了动画光标的效果。