El_Pablo
old hand
Posts: 560

Loc: Québec
Post Rank (AVG):
FMP: 11 Advanced OS: Windows 7 Skill: Intermediate
Tweet This Post!
|
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 :
Code:
;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!
Nick
There are only 10 types of people in the world: Those who understand binary, and those who don't. |
|