<html>
<head>
<base href="https://bugs.documentfoundation.org/">
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - CONFIGURATION: Normal view not possible with custom short cut key"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=61424#c21">Comment # 21</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - CONFIGURATION: Normal view not possible with custom short cut key"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=61424">bug 61424</a>
from <span class="vcard"><a class="email" href="mailto:trashyankes@wp.pl" title="trashyankes@wp.pl">trashyankes@wp.pl</a>
</span></b>
<pre>every thing work "fine", simply "normal view" action is bind to different thing
that button in menu.
Using macro recording I find that "view->normal" action call:
```
dispatcher.executeDispatch(document, ".uno:PageMode", "", 0, Array())
```
but button in menu call:
```
dispatcher.executeDispatch(document, ".uno:NormalMultiPaneGUI", "", 0, Array())
```
This give us one workaround, simply crate macro that call correct action for
you:
```
sub Main
rem ----------------------------------------------------------------------
rem define variables
dim document as object
dim dispatcher as object
rem ----------------------------------------------------------------------
rem get access to the document
document = ThisComponent.CurrentController.Frame
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
rem ----------------------------------------------------------------------
rem dispatcher.executeDispatch(document, ".uno:NotesMode", "", 0, Array())
rem ----------------------------------------------------------------------
dispatcher.executeDispatch(document, ".uno:NormalMultiPaneGUI", "", 0, Array())
end sub
```</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>