using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Update the URLs in the strings below
string website1 = "https://www.displayfusion.com";
string website2 = "https://www.fileseek.ca";
// Open website1 on monitor 1
windowHandle = BFS.Web.OpenUrlNewWindow(website1);
BFS.General.ThreadWait(2000);
BFS.Window.MoveToMonitorMaximized(1, windowHandle);
// Open website2 on monitor 2
windowHandle = BFS.Web.OpenUrlNewWindow(website2);
BFS.General.ThreadWait(2000);
BFS.Window.MoveToMonitorMaximized(2, windowHandle);
}
}