Modifying the EDAPT CS shortcuts set to better suit your needs

Please note: This article refers to Flash 8 and CS versions only. Animate CC shortcuts are much easier to modify and this can be done via the default dialog.

If you'd like to use EDAPT Shortcuts as a starting point for your customized set the best way to start would be to create a copy, change its name and work on that.

There are xml comments inside the file so finding your way should be straight forward. All entries are sorted according to key code and start with a comment indicating which actual key they refer to.

Please, keep in mind that many of the EDAP Tools commands are multifunction and listen for specific modifier keys.
For example Convert To Keyframe Advanced has two modes: Normal and Extreme.
Normal responds to the single key shortcut [ F6 ]
Extreme to [ Alt+F6 ]
If you want to assign a different set of shortcuts to this command, Extreme will always need Alt+ combination to function.

Here is an example:
These are the universal F6 shortcuts for Windows – F6 – Standard mode, Alt+F6 – Extreme mode, Shift+F6 – Remove Keyframes.
F6 key is defined by its keycode 117

<!--	[ F6 ]	-->
<Shortcut name="04      Convert To Keyframe Advanced" key="117" scope="IDR_MAINFRAME" flags="3" />
<Shortcut id="32994" key="117" scope="IDR_SKETCHTYPE" flags="7" />
<Shortcut name="04      Convert To Keyframe Advanced" key="117" scope="IDR_MAINFRAME" flags="19" />
<Shortcut name="04      Convert To Keyframe Advanced" key="117" scope="1" flags="3" />
<Shortcut id="32994" key="117" scope="2" flags="7" />
<Shortcut name="04      Convert To Keyframe Advanced" key="117" scope="1" flags="19" />

If we want instead of [ F6 ] to create and remove Keyframes with the key [ X ] all we need to do is replace the keycode 117 with 88 like this:

<!--	[ F6 changed to X ]	-->
<Shortcut name="04      Convert To Keyframe Advanced" key="88" scope="IDR_MAINFRAME" flags="3" />
<Shortcut id="32994" key="88" scope="IDR_SKETCHTYPE" flags="7" />
<Shortcut name="04      Convert To Keyframe Advanced" key="88" scope="IDR_MAINFRAME" flags="19" />
<Shortcut name="04      Convert To Keyframe Advanced" key="88" scope="1" flags="3" />
<Shortcut id="32994" key="88" scope="2" flags="7" />
<Shortcut name="04      Convert To Keyframe Advanced" key="88" scope="1" flags="19" />

For a full description of flags and scope values, please, read this article.
Printable PDF with all  Flash KeyCodes PDF can be downloaded from our site.
You may also be interested in understanding multifunction commands.

 
Comments

No comments yet.

Leave a Reply