25。问: 如何用action控制倒放? 答: 做一个mc放在合适的地方,里面有两帧 第一帧: If (GetProperty ("/a",_currentframe)<=1) Begin Tell Target ("/a") Go to and Stop (GetProperty ("/a",_totalframes)) End Tell Target Else Begin Tell Target ("/a") Go to and Stop (GetProperty ("/a",_currentframe)-1) End Tell Target End If 第二帧: Go to and Play (1)
If (GetProperty ("/a",_currentframe)<=1) Begin Tell Target ("/a") Go to and Stop (GetProperty ("/a",_totalframes)) End Tell Target Else Begin Tell Target ("/a") Go to and Stop (GetProperty ("/a",_currentframe)-1) End Tell Target End If 第二帧: Go to and Play (1) 这一段肯定放在一个mc 里, 假设这个mc为/b 在/a需要停止的帧理设置 Begin Tell Target ("/b") stop End Tell Target stop 就可以了