图7-100 导入1张图片
(3) 双击Script通道的第1帧,打开Script窗口,输入以下Lingo语句,如图7-101所示。
on exitFrame me
go to the frame
end
图7-101 第1帧Lingo脚本
(4) 选中舞台上的精灵1,单击右键,在快捷菜单中选择Script命令,打开Script窗口为其添加以下的Lingo语句,如图7-102所示。
on mouseWithin
set cloc = the mouseLoc
set sloc=(sprite 1).loc
if cloc.locH > sloc.locH then
(sprite 1).flipH = ***e
else
(sprite 1).flipH = False
end if
if cloc.locV>sloc.locV then
(sprite 1).flipV=***e
else
(sprite 1).flipV=False
end if
end mouseWithin