This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; create and run 'SOUNDCARD ANALYSIS.ahk' from https://www.autohotkey.com/docs/commands/SoundSet.htm | |
; screenshot and close window | |
; mute the microphone in Recording > Properties > Levels | |
; run 'SOUNDCARD ANALYSIS.ahk' again and find the row where MUTE has changed to 'On' | |
; replace [#MIXER_ID] with changed row, i.e. 'SoundSet $val, Master, Mute, 11' | |
SS( $val ) | |
{ | |
SoundSet $val, Master, Mute, [#MIXER_ID] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set _app to text returned of (display dialog "Reset application: " default answer "Google Chrome") | |
set _offset to 30 | |
set x_start to 100 | |
set y_start to 15 | |
set _width to 1550 | |
set _height to 1000 | |
set new_col_at to 3 | |
tell application _app | |
set last_x to (_offset * (count windows)) + x_start |