这一节说一说go命令。一开始接触lingo,多是要接触go命令。go命令虽然是很简单,但还是有很多人没有很好掌握它。
通常go命令有三种用法:
go to the frame (go to frame X)
go to marker "XXX"
go to movie "XXX"
先说第一种,go to the frame 是指帧剧本中用的。通常的形式是:
on exitframe me
go to the frame
end
是用于循环播放当前播放头所在的帧。它与节奏通道的“wait for ……”不同之处在于它是不停地重复播放当前帧,而“wait for ……”则是等待某事物完了之后才继续播放下一帧,表现上不同在于当前帧中的loop或gif动画还会不会动。
然而,这句还有一些变化的。例如:go to (the frame +1)。
go to (the frame +1)是指播放当前播放头所在的下一帧。常用的形式如下:
on mouseUp me
go to (the frame +1)
