Generally, this document is about Mapkeys, and not a place to collect mapkeys. I think the place to collect mapkeys is a Mapkey Index document and separate documents for each mapkey/mapkey group. For example, the rather lengthy mapkeys should get their own documents, but one liners that do pan-zoom-rotate, for example, can get their own.
Personal Preference
Generally, I recommending storing mapkeys in .txt files and at worst, have only one mapkey in config.pro to open the import config dialog to get to them. This way the config.pro stays unedited except as required and contains config options. The mapkeys can be maintained with Notepad, or other editor without trouble.
I also recommend that the mapkey window be kept open so that the mapkeys can be selected and Run from the mapkey window. This has the advantage that the names don't step on each other and the names can be both significant and the user can see the description as required.
Beginning
When any text that is not directed to a dialog box is typed from the keyboard, Creo continuously tries to match the characters to mapkeys. As soon as it sees any match it runs the related stored commands. This means that the user can't have keyboard access to both "X" and "XZ" because as soon as the "X" matches it executes the "X" commands and so "XZ" is never usable. Worse, typing "XZ" will run the "X" command, but leave the "Z", which may not match anything and Creo can't run a mapkey until the "Z" is removed with backspacing.
As mentioned above, they can be selected from the Mapkey dialog box and Run.
Handy config options
- new_parameter_ui no.yes
- cmdmgr_trail_output yes
Start with Olaf Corten's suggestion (from
)
Use this config.pro option: cmdmgr_trail_output YES (before starting recording)
Your ProE trail file then consists mostly of commands like these
~ Command `ProCmdModelOpen`
instead of
~ Activate `main_dlg_cur` `File.psh_open`
Further Olaf smarts (
)
- Open the config.pro with a text editorset the config option cmdmgr_trail_output YES and save the config.pro
- (re)start ProE
- find all mapkeys with "main_dlg_cur" commands (e.g. ~ Activate `main_dlg_cur` `File.psh_open` )
- Update them manually: perform the same mapkey step(s) in ProE
- open your trail file with a text editor
- look at the latest added lines at the bottom (e.g. ~ Command `ProCmdModelOpen` )
- Replace the "main_dlg_cur" commands with the "~ Command" commands in the config.pro.
- And while you're at it: remove all ~Select - ~ Close combinations. They're not needed.
- Save the config.pro Or Re-Record them:
Open the Mapkey dialogue
Pre-Creo1: Tools-> Mapkeys-> [select mapkey]-> Modify-> Record
Creo1: File-> Options-> Environment-> Mapkeys Settings-> [select mapkey]-> Modify-> Record
Now perform the same mapkey step(s) in ProEStop the recording and save.
(Note when re-recording them you will get duplicate mapkeys in your config.pro. The last one will be the newest.)
This is a spreadsheet that is said to have a bunch of mapkeys in it from Mike Foster- I have not checked them recently enough to remember, but I must have looked at them at one time.
(
)
From
That should work. A couple of best practices I have learned while working with mapkeys:
1. Whenever possible avoid clicking icons or using context menus if you can use the menus along the top to achieve the same results. If these mapkeys are going to be used by more people than yourself, not everyone will have the same icons but the menus along the top will remain the same. Also context menus change sometimes for prt vs asm vs drw.
2. Don't rely on the default options for dialog boxes. Pro/E remembers and saves the last picked options. So if when you record the mapkey the "Solid Models" drop down is selected by default the mapkey won't record that you specifically want that. So if the option changes in the future because you have run another find query and then you run the mapkey, your mapkey will fail.
3. If you can type in the name of the options you want into the drop down boxes. Sometimes you can sometimes you can't. If you don't type it in, Pro/E will often simply record the number from the top of the drop down you picked. The number of items in the drop down can change and then your mapkey will break.
4. When saving to file locations just type the full path in. IE: C:\temp\myfile.prt. Everyone can have different working directories and if you don't type the absolute path it might not work if you change your working directory.
5. If you edit the files by hand you can use the following characters:
! This comments out the line
% You can use this to call another mapkey. IE %aa;
\ This has to be at the end of every line except for the last to indicate the mapkey continues
@SYSTEM Use this followed by a path to call a script. IE @SYSTEMC:\\temp\\myscript.bat
\ If you have a really long (>95 characters) file path you can break it up with the \ character without a ; IE:
mapkey(continued) @SYSTEMC:\\really\\long\\file\\path\mysc
mapkey(continued) ript.bat;
That's all I can think of for now.
Chris
Advanced Mapkeys
One feature that has been mentioned as handy is that bad commands in mapkeys are simply rejected. So one can build a mapkey that works on parts and fix into it parts that work on assemblies and the command interpreter will ignore the part that doesn't apply. See
A hint to making a more universal mapkey:
from Jose Costa
In selecting the results from the Find tool, to select all of them, it may be useful to replace what looks like the list item with a universal reference
Replace the line
mapkey(continued) ~ Select `selspecdlg0` `ResultList` 1 `7:52:`
with
mapkey(continued) ~ Select `selspecdlg0` `ResultList` -1; \
Mapkeys for selection filters
See
Mapkey Cautions
When mapkeys from older versions are still functioning in later versions, it usually means that there was no change in this area.
However, in some rare cases they trigger a mechanism, that loads small parts of the old user interface, to enable the mapkey successfully processing.
These parts of the old UI will usually persist in a session and can alter the UI for this function even when the user is manually selecting menus.
Mapkey Editing
Mapkeys are actually run-on sentences of commands. However, they are line-length limited. The line-continuation character is "\" which will be present on every line except the last line. The missing "\" is how the key processor knows it has reached the end. If, in editing a mapkey, a "\" is removed that should not be, upon importing the mapkey one will typically be rewarded by a long string of stop signs.
Another feature, mentioned by Paul Sobejko, in , the "mapkey(continued)" portion is not required; the line continuation character is enough.
Pushing mapkeys to the command ribbon