{
// Tricky part here. <code>ActionCommand</code> contains character of a pressed key.
// As soon as we use CTRL-number sequence we can freely convert this code into number and
// use for our own purpose.
int index = Integer.parseInt(e.getActionCommand()) - 1;
final GuidesSet cgs = GlobalModel.SINGLETON.getGuidesSet();
if (index < cgs.getGuidesCount())
{
final IGuide guide = cgs.getGuideAt(index);
if (GlobalModel.SINGLETON.getSelectedGuide() != guide)
{
// EDT !!!
GlobalController.SINGLETON.selectGuideAndFeed(guide);
}