在 livecode 中控制 mp3 音乐音量的滑块
A slider to control volume of mp3 music in livecode
我想知道有没有办法用
滑块,这样如果滑块是一个值 0 就没有声音,并且
如果它是 100,那么声音会尽可能高
对于脚本,我尝试了类似“将播放器 1 的播放响度设置为
value”这显然不起作用,所以是的,我正在寻求你的帮助..
在这里工作正常。
on scrollbarDrag theValue
set the playLoudness of player 1 to theValue
end scrollbarDrag
当然你需要设置滑块的startValue为0,endValue为100。
我想知道有没有办法用 滑块,这样如果滑块是一个值 0 就没有声音,并且 如果它是 100,那么声音会尽可能高
对于脚本,我尝试了类似“将播放器 1 的播放响度设置为 value”这显然不起作用,所以是的,我正在寻求你的帮助..
在这里工作正常。
on scrollbarDrag theValue
set the playLoudness of player 1 to theValue
end scrollbarDrag
当然你需要设置滑块的startValue为0,endValue为100。