Move Into Database Keyboard Command

Before I resort yet again to Keyboard Maestro, can someone let me know if am I missing the way to issue a Move Into Database command other than right-clicking with the mouse?

One possibility is to use a script and to save it in ~/Library/Application Support/DEVONthink Pro 2/Scripts:


tell application id "DNtp"
	set theSelection to the selection
	repeat with theRecord in theSelection
		consolidate record theRecord
	end repeat
end tell

Afterwards you could either specify a shortcut via System Preferences > Keyboard or by naming the script file accordingly (e.g. “Move into database___Cmd-Ctrl-M.scpt”)

Wow. That’s excellent, and fantastic customer support. Thank you.