• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:ボタンrolloverで画像を変えたいのですが。)

Flash初心者のためのボタンrolloverで画像を変える方法

このQ&Aのポイント
  • Flash初心者の方に向けて、ボタンrolloverで画像を変える方法について説明します。
  • 質問文章では、ステージにボタンとMCがあり、rolloverでボタンがMCに変わり、rolloutでMCがボタンに戻るようなアクションスクリプトを作りたいとのことです。
  • アクションスクリプトの書き方がわからず困っているので、Flash初心者の方でも理解しやすい解説を提供します。

質問者が選んだベストアンサー

  • ベストアンサー
回答No.1

「MC1に戻る」という動作がどのようなものかがわかりませんが、 以下のようなスクリプトでどうですか? // ボタン a_btn, b_btn, c_btn // MC MC1, a_mc, b_mc, c_mc this.a_mc._visible = false; this.b_mc._visible = false; this.c_mc._visible = false; this.a_btn.onRollOver = function(){ _root.a_mc._visible=true; _root.MC1._visible=false; } this.a_btn.onRollOut = function(){ _root.a_mc._visible=false; _root.MC1._visible=true; } this.b_btn.onRollOver = function(){ _root.b_mc._visible=true; _root.MC1._visible=false; } this.b_btn.onRollOut = function(){ _root.b_mc._visible=false; _root.MC1._visible=true; } this.c_btn.onRollOver = function(){ _root.c_mc._visible=true; _root.MC1._visible=false; } this.c_btn.onRollOut = function(){ _root.c_mc._visible=false; _root.MC1._visible=true; }

d-sylvian
質問者

お礼

とてもわかりやすい回答を有難うございました! 早速実行することができました。大変助かりました。 わかりにくい質問内容でしたのに本当に有難うございます。

関連するQ&A

専門家に質問してみよう