1

我需要一种方法来使 Vista 中的特定应用程序静音。

示例:仅将 Firefox 静音,而不是所有其他应用程序静音。非常类似于从 vista 中的音量混合器中静音特定程序。

如果有一个程序可以做到这一点,我将不胜感激。否则,如果有办法做到这一点,我会写一个小应用程序(最好是.net)。

编辑:我想自动化这个过程,可能是键映射它。

4

2 回答 2

2

我建议在 Vista 中使用内置的 Mixer ...

为什么要使用第 3 方程序?

于 2008-09-03T13:20:44.060 回答
0

使用 AutoHotkey,这比预期的效果更好!只需一个快速的窗口闪烁和 BOOM,就完成了。来源:http : //feebdack.com/knob/how_to_mute_a_single_application

#NoEnv ;// Recommended for new scripts
#Persistent ;// Recommended for new scripts
SendMode Input  ;// Recommended for new scripts
SetTitleMatchMode 2

;// Set VolumeMute to only silence Media Center
$f3::
    MuteMediaCenter()
    return

MuteMediaCenter()
{   
    ;// Open mixer
    Run sndvol 
    WinWait Volume Mixer
    ;// Mute Standard Media Center Process
    appName = Chrome
    MuteApp(appName)
    ;// Mute Netflix Media Center Process
    appName = Firefox
    MuteApp(appName)
    WinClose Volume Mixer
}

;// Volume Mixer must exist
MuteApp(appName) 
{
    ;// Find X position & width of textblock with text matching our appName
    ControlGetPos, refX, , refW, , % appName, Volume Mixer
    ;// Find button with left side within the width of the textblock
    x = -1
    while ( x != "") 
    {
        ;// A_Index is current loop iteration→used to find id
        tbIDX := (A_Index * 2) 
        ControlGetPos, x, , , , ToolbarWindow32%tbIDX%, Volume Mixer
        diff := x - refX
        if (diff > 0 && diff < refW)
        {
            ;// msgbox diff: %diff% refX: %refX% tbIDX: %tbIDX% x: %x% A_Index: %A_Index%
            ControlClick, ToolbarWindow32%tbIDX%, Volume Mixer
            break
        }
    }
}
于 2015-05-01T16:10:43.077 回答