代码之家  ›  专栏  ›  技术社区  ›  Anriëtte Myburgh

Flash CS3+AS 3.0静音和取消静音舞台音量

  •  4
  • Anriëtte Myburgh  · 技术社区  · 16 年前

    有人可以使用AS 3.0帮助快速静音或取消静音Flash CS3中的舞台音量吗。

    谢谢

    2 回复  |  直到 16 年前
        1
  •  13
  •   Branden Hall    16 年前

    SoundMixer.soundTransform = new SoundTransform(0);
    

    取消静音:

    SoundMixer.soundTransform = new SoundTransform(1);
    
        2
  •  2
  •   Bo Persson Touseef    13 年前

    当你想停止声音时,把这一行放在你的脚本中:

    SoundMixer.stopAll();