AutoHotKey(오토핫키) 설명서 SoundGetWaveVolume

Posted by 발전소장
2014. 8. 14. 14:11 AutoHotKey/Commands

SoundGetWaveVolume

WAVE출력의 음량의 현재의 설정치를 취득한다

SoundGetWaveVolume, OutputVar [, DeviceNumber]

Parameters

인수명설명
OutputVar 결과를 취득하는 변수명
DeviceNumber 사운드 디바이스의 번호.
생략시는 「1」.

ErrorLevel

성공하면 「0」, 실패하면 「1」

Remarks

값은0...100의 수치로 취득된다.
취득에 실패했을 경우는 비운다.

값을 변경하려면 ,SoundSetWaveVolume(을)를 사용한다.

마스터 볼륨등의 설정은,SoundSet(와)과SoundGet그리고 조작할 수 있다.

Related

SoundSetWaveVolume, SoundSet, SoundGet, SoundPlay

Example(s)

SoundGetWaveVolume, OutputVar
MsgBox, The current wave output volume level is %OutputVar%`%.