<div class="markdown">
<p dir="auto">On 19 Jan 2015, at 23:36, Max Andersen wrote:</p>

<blockquote>
<p dir="auto">On 19 Jan 2015, at 23:01, Max Andersen wrote:</p>

<blockquote>
<p dir="auto">can a keybinding do mulitple things ? like select next mailbox and then do<br>
the focus window ?</p>
</blockquote>
</blockquote>

<p dir="auto">Yes.</p>

<blockquote>
<p dir="auto">I tried this:</p>

<pre><code>"N" = ("selectNextMailbox:",  "", "makeFirstResponder:", "mainOutline");
 "P" = ("selectPreviousMailbox:", "", "makeFirstResponder:", "mainOutline");>
</code></pre>

<p dir="auto">but that does not seem to have any effect - just do the selectnext and prev. no change of focus ;/</p>
</blockquote>

<p dir="auto">There are only a few key bindings which take an argument. You should do like this instead:</p>

<pre><code>"N" = ("selectNextMailbox:",     "makeFirstResponder:", "mainOutline");
"P" = ("selectPreviousMailbox:", "makeFirstResponder:", "mainOutline");
</code></pre>

<p dir="auto">I haven't tried it though.</p>

<p dir="auto">-- <br>
Benny</p>

</div>