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)。