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?

Copy and Append

Description
This macro allows you to copy and append multiple separate strings.
Usage:
Make sure to enable the "Allow Macros to be run multiple times on the same Clipboard text" option on the Settings Macros tab.Copy the first item using Ctrl + C, to ensure the clipboard only contains your first item.For subsequent items to be appended, highlight them and run the HotKey that you assigned to this macro. When all items have been appended, press Ctrl + V to paste the result.
Language
C#.net
Minimum Version
Created By
Keith Lammers (BFS)
Contributors
-
Date Created
Aug 19, 2014
Date Last Modified
Aug 19, 2014

Macro Code

using System;

public static class ClipboardFusionHelper
{
    public static string ProcessText(string text)
    {
        return text + BFS.Clipboard.CopyText();
    }
}