Jump to content
Server Maintenance This Week. ×

Autohotkey to add keyboard shortcuts


This topic is 5167 days old. Please don't post here. Open a new topic instead.

Recommended Posts

I don't know for you, but for myself, I hate using the mouse. I'm a keyboard shortcut freak.

I use Autohotkey to add some keyboard shortcuts to FM script editor such as CTRL+ALT+C to add a comment or CTRL+ALT+D for a dialog box instead of using the mouse.

Autohotkey use an easy to learn scripting language.

Here is the script use when editing a FM script :


;Filemaker script shortcuts

;^ : Ctrl

;! : Alt

;+ : Shift

;# : Win

;& : Combination (Eg : ^1&2 --> Ctrl + 1 + 2)

#IfWinActive, Edit Script

{

^!c::Send, {SHIFTDOWN}{TAB}{TAB}{SHIFTUP}comment{ENTER}{ENTER}

^!d::Send, {SHIFTDOWN}{TAB}{TAB}{SHIFTUP}show custom{ENTER}{ENTER}

^!i::Send, {SHIFTDOWN}{TAB}{TAB}{SHIFTUP}if{ENTER}{ENTER}

^!l::Send, {SHIFTDOWN}{TAB}{TAB}{SHIFTUP}loop{ENTER}{ENTER}

^!v::Send, {SHIFTDOWN}{TAB}{TAB}{SHIFTUP}set variable{ENTER}{ENTER}

}

I know it is not a FM plugin, but I didn't find a place to wrote about it.

BTW it's free and open source!

Link to comment
Share on other sites

This topic is 5167 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.