FreeCAD-Doc/localwiki/Macro_Unbind_Numpad_Shortcuts-hr.html
2018-07-19 18:47:02 -05:00

85 lines
3.8 KiB
HTML

<html><head><title>Macro Unbind Numpad Shortcuts/hr</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>Macro Unbind Numpad Shortcuts/hr</h1></div>
<div id="mw-content-text" lang="hr" dir="ltr" class="mw-content-ltr"><hr/><div class="mw-parser-output"><table class="fcinfobox wikitable ct" width="100%" style="float: right; width: 230px; margin-left: 10px;">
<tr>
<td class="ctTitle">
<h3><span class="mw-headline" id="Macro_Unbind_Numpad_Shortcuts"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Text-x-python.png" class="image"><img alt="Text-x-python.png" src="32px-Text-x-python.png" width="32" height="32" srcset="/wiki/images/2/2c/Text-x-python.png 1.5x" /></a> Macro Unbind Numpad Shortcuts</span></h3>
</td></tr>
<tr>
<th class="ctOdd">Description
</th></tr>
<tr>
<td class="ctEven left macro-description">rebinds standard view commands from digit keys to Ctrl+digit, so that they don't spin the view by accident when entering numbers.
</td></tr>
<tr>
<th class="ctOdd">Author
</th></tr>
<tr>
<td class="ctEven macro-author"><a href="https://www.freecadweb.org/wiki/index.php?title=User:DeepSOIC" title="User:DeepSOIC">DeepSOIC</a>
</td></tr>
<tr>
<th class="ctOdd">Links
</th></tr>
<tr>
<td class="ctEven"><a href="Macros_recipes.html" title="Macros recipes">Macros recipes</a><br /><a href="How_to_install_macros.html" title="How to install macros">How to install macros</a><br /><a href="Customize_Toolbars.html" title="Customize Toolbars">How to customize toolbars</a>
</td></tr>
<tr>
<th class="ctOdd">Version
</th></tr>
<tr>
<td class="ctEven macro-version">1.0
</td></tr>
<tr>
<th class="ctOdd">Date last modification
</th></tr>
<tr>
<td class="ctEven macro-date">2018-04-22
</td></tr>
<tr>
<th class="ctOdd">
</th></tr>
<tr>
<td class="ctToc"><br /><div id="toc" class="toc"><div class="toctitle"><h2>Contents</h2></div>
<ul>
<li class="toclevel-1"><a href="#Macro_Unbind_Numpad_Shortcuts"><span class="tocnumber">1</span> <span class="toctext">Macro Unbind Numpad Shortcuts</span></a></li>
<li class="toclevel-1 tocsection-1"><a href="#Kako_koristiti:"><span class="tocnumber">2</span> <span class="toctext">Kako koristiti:</span></a></li>
</ul>
</div>
</td></tr>
</table>
<p><br />
</p><p>When entering numbers, and the number input box is not properly focused, FreeCAD will react to digits by switching standard views. This macro is a quick way to re-bind the shortcuts to Ctrl+number. Doesn't help very much with entering numbers, but at least the view won't spin like crazy.
</p><p>See forum thread <a rel="nofollow" class="external text" href="https://forum.freecadweb.org/viewtopic.php?f=3&amp;t=26667">How to turn off (disable) Numpad navigation?</a>
</p>
<h2><span class="mw-headline" id="Kako_koristiti:">Kako koristiti:</span></h2>
<p>1. Copy-paste macro code to Py console of FreeCAD.
</p><p>2. Press enter twice (to make sure everything is executed).
</p><p>3. Restart FreeCAD for the changes to take effect.
</p>
<pre>preset = [
("Std_ViewAxo" , "Ctrl+0"),
("Std_ViewFront" , "Ctrl+1"),
("Std_ViewTop" , "Ctrl+2"),
("Std_ViewRight" , "Ctrl+3"),
("Std_ViewRear" , "Ctrl+4"),
("Std_ViewBottom", "Ctrl+5"),
("Std_ViewLeft" , "Ctrl+6"),
]
for (cmd, shortcut) in preset:
App.ParamGet("User parameter:BaseApp/Preferences/Shortcut").SetString(cmd, shortcut) </pre>
</div>
</div>
</div><div class="printfooter">
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=Macro_Unbind_Numpad_Shortcuts/hr&amp;oldid=286732">http://www.freecadweb.org/wiki/index.php?title=Macro_Unbind_Numpad_Shortcuts/hr&amp;oldid=286732</a>"</div>
<div id="catlinks" class="catlinks" data-mw="interface"></div><div class="visualClear"></div>
</div>
</div>
<div id="mw-navigation">
<h2>Navigation menu</h2>
</body></html>