- ベストアンサー
Flash初心者のためのボタンrolloverで画像を変える方法
- Flash初心者の方に向けて、ボタンrolloverで画像を変える方法について説明します。
- 質問文章では、ステージにボタンとMCがあり、rolloverでボタンがMCに変わり、rolloutでMCがボタンに戻るようなアクションスクリプトを作りたいとのことです。
- アクションスクリプトの書き方がわからず困っているので、Flash初心者の方でも理解しやすい解説を提供します。
- みんなの回答 (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; }
お礼
とてもわかりやすい回答を有難うございました! 早速実行することができました。大変助かりました。 わかりにくい質問内容でしたのに本当に有難うございます。