Global Command to Paste different preset values

Hey all,

How would I set a set of data (stuff I need to use often) as a shortcut of sorts, that will paste that data anytime I use that shortcut (commands that will work also outside of DOPUS)

For example Ctrl+Shift+I+1 = my address
Ctrl+Shift+I+2 = my customer number of __

Thanks a lot!

Check Lintalist or similar (the AutoHotKey forum is full of those utilities)

Lintalist is portable, free and open source (end of advertising messsage :wink: )

You can use the Opus Clipboard SET ... command on system-wide hotkeys to put text into the clipboard which can then be pasted normally.

Alternatively, you can use the Windows scripting SendKeys method to send keystrokes to the active window via a system-wide hotkey:

function OnClick(clickData)
{
	var wsh = new ActiveXObject("WScript.Shell");
	wsh.SendKeys("{HOME}+{END}");
}

But something like AutoHotkey or the tool NotNull recommends, or various clipboard history/snippets tools that are out there, may make things easier.

1 Like