Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Flash (AC3) 中,我能够离开关键帧 2 并降落在关键帧 6 上并返回到关键帧 2 我想要做的是将任何帧降落在 6 上并返回到我离开的帧?
private var frameILeft:int; private function jumpToFrame6():void{ frameILeft = currentFrame; gotoAndStop(6); }
转到第 6 帧:jumpToFrame6()。然后返回:gotoAndStop(frameILeft)。