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.
AS2を使用してライブラリからステージにムービークリップをロードするにはどうすればよいですか。そしてそれをアンロードする方法。手伝ってもらえますか?それは有り難いです
ライブラリでは、Linkage を割り当て (mc を右クリック)、Export for Actionscript をチェックして、名前 (myMovieClip など) を設定する必要があります。その名前は attachMovie メソッドで使用されます。
this.attachMovie('myMovieClip', 'myMovieClipNewName', depth);
および削除用。
this.removeMovieClip('myMovieClipNewName');
チャウス