using System;using System.Collections.Generic;public static class ClipboardFusionHelper{public static string ProcessText(string text){BFS.Clipboard.CopyText();BFS.Application.Start("notepad.exe");IntPtr mainWindow = BFS.Application.GetAppIDByWindow("Untitled - Notepad");BFS.Window.Focus(mainWindow);//BFS.General.ThreadWait(500);BFS.Clipboard.Paste();return text;}}
using System;using System.Collections.Generic;public static class ClipboardFusionHelper{public static string ProcessText(string text){// Copy the selected textBFS.Clipboard.CopyText();// Launch Notepaduint appID = BFS.Application.Start("notepad.exe");// Wait up to 10 seconds for it to open and receive focusfor (int i = 0; i < 10; i++){// If the newly launched Notepad window has focus, paste the text and break out of the loopif (BFS.Window.GetFocusedWindow() == BFS.Application.GetMainWindowByAppID(appID)){BFS.Clipboard.Paste();break;
using System;using System.Collections.Generic;using System.Windows.Forms;using System.IO;public static class ClipboardFusionHelper{public static string ProcessText(string text){// Copy the selected texttext = BFS.Clipboard.CopyText();// If the copied selection is a file list from Explorer, run the "Get Filenames from Clipboard" macroif (Clipboard.ContainsFileDropList()){BFS.ClipboardFusion.RunMacro("Get Filenames from Clipboard", text, out text);BFS.Clipboard.SetText(text);}// Launch Notepaduint appID = BFS.Application.Start("notepad.exe");