March 10, 201015 yr 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!
Create an account or sign in to comment