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 CS6 中创建一个按钮,单击时会出现另一个符号。没什么花哨的,就这个。我该怎么做?这是我到目前为止的代码:
stop(); button1.addEventListener(MouseEvent.MOUSE_UP revThing); function revThing(evt:MouseEvent):void{ >what goes here..?< }
一种方法是创建一个影片剪辑,将第一帧留空,向其添加一个 stop() 动作。将您的符号放在第二帧上,对其执行 stop() 操作。命名影片剪辑,例如 symbol_mc。您在按钮中的命令应该是
symbol_mc.gotoAndPlay(2)
另一种方法是将符号隐藏在舞台之外,并在按钮单击时将其放置在舞台上。或者已经在舞台上有符号,但不可见,在按钮单击时设置可见性。