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?

imgaijin's profile on WallpaperFusion.com
Is it possible to open a 'create a new message' email in Thunderbird using macro or similar?
Imgaijin
Mar 20, 2016  • #1
Keith Lammers (BFS)'s profile on WallpaperFusion.com
It sure is! In your Macro, add the "Macro Script" action, and paste in the following code:

Code

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})");
}
}


Hope that helps!
Mar 22, 2016  • #2
Subscribe to this discussion topic using RSS
Was this helpful?  Login to Vote(-)  Login to Vote(-)