Customize Lotus Notes 8.x Shortcuts

5

1

Does anyone know how to customize the shortcut keys in Lotus Notes?

Using Lotus Notes 8.

rh0dium

Posted 2009-12-22T21:49:03.790

Reputation: 163

Which version of notes would you like them in? – IrqJD – 2010-12-30T05:11:00.353

I would like to know the answer to that... – Daud Ahmad Khokhar – 2010-01-08T11:47:37.737

Answers

4

This 60-second AutoHotkey script will give you CTRL+R to reply to a message. However, it requires that the current pane is the message list. If you've clicked the preview pane, the menu commands don't work.

#IfWinActive ahk_class SWT_Window0 
{
  ^r::Send !ayr
return
}

Dave

Posted 2009-12-22T21:49:03.790

Reputation: 161

FYI For Notes 8.5 with the preview pane active, I needed this sequence:

^r::Send !apye – moodboom – 2014-07-11T14:55:27.743

How do you implement this?? – rh0dium – 2011-02-22T21:33:17.207

install AutoHotKey @rh0dium. – studiohack – 2011-06-13T00:18:45.177