Processing Ajax...

Title
Close Dialog

Message

Confirm
Close Dialog

Confirm
Close Dialog

Confirm
Close Dialog

Close Steam and Switch Audio Device

Description
This script will exit Steam and switch to the audio device you specify in the defaultSound variable at the top of the script.
Language
C#.net
Minimum Version
Created By
Javier Olascoaga
Contributors
-
Date Created
Oct 29, 2015
Date Last Modified
Oct 29, 2015

Scripted Function (Macro) Code

using System;
using System.Drawing;

// The 'windowHandle' parameter will contain the window handle for the:
// - Active window when run by hotkey
// - Window Location target when run by a Window Location rule
// - TitleBar Button owner when run by a TitleBar Button
// - Jump List owner when run from a Taskbar Jump List
// - Currently focused window if none of these match
public static class DisplayFusionFunction
{
	public static void Run(IntPtr windowHandle)
	{
		//change this variable with your default sound device
		string defaultSound = "[default sound device]";
		
		//change this variable with your steam.exe path 
		string steamDirectory = @"C:\Program Files (x86)\Steam\Steam.exe";

		//ask steam to shutdown if it is running
		if(BFS.Application.IsAppRunningByFile(steamDirectory))
			BFS.Application.Start(steamDirectory, "-shutdown");
			
		//set the default audio playback device
		BFS.Audio.SetDefaultPlaybackSounds(defaultSound);
	}
}