Processing Ajax...

Title

Message

Confirm

Confirm

Confirm

Confirm

Are you sure you want to delete this item?

Confirm

Are you sure you want to delete this item?

Language Switch Alt+Shift

Description
Sends an Alt+Shift keystroke to switch input languages in Windows.
Language
C#.net
Minimum Version
Created By
Alamo
Contributors
-
Date Created
Jun 21, 2024
Date Last Modified
Jun 21, 2024

Scripted Function (Macro) Code

using System;
using System.Drawing;

public static class DisplayFusionFunction
{
	public static void Run(IntPtr windowHandle)
	{
		// Simulate pressing the Alt key
		BFS.Input.SendKeyDownWithoutWait("%");
		//  Simulate pressing the Shift key
		BFS.Input.SendKeyDownWithoutWait("+");
		// Simulate releasing the Shift key
		BFS.Input.SendKeyUpWithoutWait("+");
		//Simulate releasing the Alt key
		BFS.Input.SendKeyUpWithoutWait("%");
		
		// Made by Alamo#4242
	}
}