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.
我有一个使用 SWFLoader 加载 flash 文件的 flex 应用程序。有没有办法从我的 flex 应用程序控制该 swf 中的音量?
你可以使用这样的方法来做到这SoundTransform一点。
SoundTransform
var soundTransform:SoundTransform = new SoundTransform(volume); swfLoader.soundTransform = soundTransform;
音量应该是介于 0 和 1 之间的数字。这是您要找的吗?