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.
我制作了一个包含多个 SWF 文件的菜单。在第一部电影中,正在播放音频,但在第二部 SWF 中,我的音频没有播放。
有什么方法可以只为多个 SWF 文件使用一个音频而不将音频放在每个文件上?
如果声音和其他 swf 文件位于同一目录中并将 THAT 音频加载到 swf,则有可能这样做。
var s:Sound = new Sound(); s.onLoad = function():Void { trace("Song loaded."); }; s.onSoundComplete = function():Void { trace("Song done."); }; s.loadSound("music.mp3", true);