Let's assume that you've called your macro "Save". Edit the native format of your database and go to the Tools menu where you will find the options "Keyboard" and "Toolbar".
By default the "CTRL-s" keys and the "Save" button of the toolbar will only save your record. Nothing more and nothing less.
You can however make "CTRL-s" run a macro by assigning your macro "Save" to these keys.
You can do the same for the "Save" button of the toolbar. Doing this will automatically redirect the menu option "Save record" (feature added in build 4220) to the same macro.
When you do this, users may use "CTRL-s", the button or the menu to save the record, but in all cases the macro "Save" will be run.
Remember that your macro must end with the SaveRecord command or else the record will not be saved.
Tip: you can make your macro check and edit each and every field in the record. It can automatically correct common mistakes. In many cases, it can do this more precisely than standard validation can, and you can present the users with your own messages.
Charles