using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run()
{
// Get the Thunderbird window handle
IntPtr window = BFS.Window.GetWindowByText("*Thunderbird");
// Focus the Thunderbird window
BFS.Window.Focus(window);
BFS.General.ThreadWait(500);
// Send the Ctrl + N keyboard shortcut
BFS.Input.SendKeys("^({VK_78})");
}
}