%Clip()%, %Clip(x)% - paste data from clipboard or clipboard history
The %Clip()% macro allows you to use the current content of the clipboard in your strings.
Macros %Clip(1)% - %Clip(5)% allows you to use the data from the clipboard history in your strings. %Clip(1)% is latest captured clip, %Clip(2)% - previous clip in history and so on. The Clipboard History feature should be activated.
Note : If you need to paste only plain text, we recommend to use %ClipAsPlainText()% macro, because it works faster and more stable.
Usage
Just use %Clip()% or %Clip(x)% in your string - this macro will be replaced with the clipboard data when pasting.
Examples
- <a href="%clip()%" target="_blank"></a>%Control(left*4)% - Make link from the contents of the clipboard.
- Begin %clip()% End - Insert data from the clipboard and include beginning and ending markers.
Intro
Work with program
Macros